Nested tables and Slide position

I have to put table inside table cell. Can it be possible?

I have slide with one table in it. Now I have to add multiple tables in a loop. But don't know how to calculate position(coordinates) to put each table down to each other. And not overlapping..

Any help will be appreciated..

At first, nested tables are not supported by MS PowerPoint so it can’t be supported also by Aspose.Slides.

When you change text in a table then size of table should be recalculated automatically
so you can check standard Height property.

My question was - Suppose I have a table on slide. and then I have to add another table to the same slide.and one more..So everythime I need to get the position of last table on the slide , so that my new table would sit below the previous one and not at the top of it. How should I achieve that?

Thanks,

As I wrote all shapes on a slide have properties X, Y, Width, Height. Tables also have it.
Why you can’t calculate position of the next table as (table1.Y + table1.Height) ?

hi , i want to create table inside the existing table cell for eg

table.getCell(1, 0) position , in this cell i want to add a table with 2 rows and columns, please help me creating it.Thanks in advance

Hello,

You cannot created Nested tables. I mean table inside another table cell.