Cell constructor

Cell(doc)

Initializes a new instance of the Cell class.

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

Remarks

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

To append Cell to the document use CompositeNode.insertAfter() or CompositeNode.insertBefore() on the row where you want the cell inserted.

See Also