NateDawg wrote:
My hope was that if a complete "tbl" did not fit on a page it would move to the next page. I can't figure out how to do that with just one table. Any suggestions?
I don't recall how I managed to get nested tables when I tried it about two years ago ...
Today I tried it with a textframe in a cell:
Code:
Cell cell = row1.Cells[0];
TextFrame tf = cell.AddTextFrame();
Table table2 = tf.AddTable();
table2.Borders.Width = 1;
table2.AddColumn();
row = table2.AddRow();
row.Cells[0].AddParagraph("*** Test ***");
This works and should do the trick (if the nested tables are small enough to fit on a page).