Hi,
I did not find any problem. Attached is the ppt produced as a result of the following code:
Presentation pres = new Presentation("test2.ppt");
Slide sld= pres.GetSlideByPosition(1);
foreach( Aspose.Slides.Shape shp in sld.Shapes )
if (shp is Aspose.Slides.Table)
{
Aspose.Slides.Table tbl = (Aspose.Slides.Table)shp;
for (int i = 0; i < tbl.RowsNumber; i++)
for (int j = 0; j < tbl.ColumnsNumber; j++)
tbl.GetCell(j, i).TextFrame.Paragraphs[0].Portions[0].Text = "CELLL " + i.ToString() + j.ToString();
tbl.DeleteRow(0);
}
Slide sld1 = pres.GetSlideByPosition(2);
foreach (Aspose.Slides.Shape shp1 in sld1.Shapes)
if (shp1 is Aspose.Slides.Table)
{
Aspose.Slides.Table tbl1 = (Aspose.Slides.Table)shp1;
for (int k = 0; k < tbl1.RowsNumber; k++)
for (int l = 0; l < tbl1.ColumnsNumber; l++)
tbl1.GetCell(l, k).TextFrame.Paragraphs[0].Portions[0].Text = k.ToString() + l.ToString();
tbl1.DeleteRow(0);
}
pres.Write("test3.ppt");