Hi,
I am using a Word .dot file as a template for a pdf report. The Word .dot file will have one or more tables which I will add rows to using Aspose Words. Currently I locate the table I want to update by index, using code like this…
Table table = (Table)docMaster.getChild(NodeType.TABLE, 1, true);
This works fine as long as no other tables are added to my .dot file.
How can I use a bookmark to get the Table object instead of relying on the index number?
This message was posted using Page2Forum from BookmarkStart - Aspose.Words for Java