Table constructor

Table(doc)

Initializes a new instance of the Table class.

Table(doc: Aspose.Words.DocumentBase)
ParameterTypeDescription
docDocumentBaseThe owner document.

Remarks

When Table is created, it belongs to the specified document, but is not yet part of the document and Node.parentNode is null.

To append Table to the document use CompositeNode.insertAfter() or CompositeNode.insertBefore() on the story where you want the table inserted.

See Also