Hi Priya,<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for considering Aspose.Slides.
The table property issue that you have pointed to is actually not a bug. The minimum row height that can be set is 328 and any value entered lesser to it will be set to 328. However, you can enter values greater than 328 and it will be set. Likewise the minmum value for column width is 240. I used the following code snippet to test the scenario and used Aspose.Slides for .NET 4.1.0.
//Creating an empty presentation
Presentation original = new Presentation();
//Adding an empty slide
Slide sl = original.AddEmptySlide();
//Creatting a table with 5 columnd and 4 rows
Table tl = sl.Shapes.AddTable(1400, 1200, 1200, 500, 5, 4);
//Setting Row height of 0th row
tl.SetRowHeight(0, 10000);
//Setting Col height of 0th row
tl.SetColumnWidth(0, 10000);
// Extracting row height and column width
int y = tl.GetColumnWidth(0);
int x = tl.GetRowHeight(0);
// Saving presentation file
original.Write("d://ppt//orig.ppt");
Thanks and Regards,