DocumentBuilder constructor

DocumentBuilder()

Initializes a new instance of this class.

DocumentBuilder()

Remarks

Creates a new DocumentBuilder object and attaches it to a new Document object.

DocumentBuilder(options)

Initializes a new instance of this class.

DocumentBuilder(options: Aspose.Words.DocumentBuilderOptions)
ParameterTypeDescription
optionsDocumentBuilderOptions

Remarks

Creates a new DocumentBuilder object and attaches it to a new Document object. Additional document building options can be specified.

DocumentBuilder(doc)

Initializes a new instance of this class.

DocumentBuilder(doc: Aspose.Words.Document)
ParameterTypeDescription
docDocumentThe Document object to attach to.

Remarks

Creates a new DocumentBuilder object, attaches to the specified Document object. The cursor is positioned at the beginning of the document.

DocumentBuilder(doc, options)

Initializes a new instance of this class.

DocumentBuilder(doc: Aspose.Words.Document, options: Aspose.Words.DocumentBuilderOptions)
ParameterTypeDescription
docDocumentThe Document object to attach to.
optionsDocumentBuilderOptionsAdditional options for the document building process.

Remarks

Creates a new DocumentBuilder object, attaches to the specified Document object. The cursor is positioned at the beginning of the document.

See Also