Word.Interfaces.DocumentCreatedLoadOptions interface
The DocumentCreated object is the top level object created by Application.createDocument. A DocumentCreated object is a special Document object.
Remarks
Properties
| $all | Specifying |
| body | Gets the |
| properties | Gets the properties of the document. |
| saved | Indicates whether the changes in the document have been saved. A value of |
Property Details
$all
Specifying $all for the load options loads all the scalar properties (such as Range.address) but not the navigational properties (such as Range.format.fill.color).
$all?: boolean;
Property Value
boolean
body
Gets the Body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.
body?: Word.Interfaces.BodyLoadOptions;
Property Value
Remarks
properties
Gets the properties of the document.
properties?: Word.Interfaces.DocumentPropertiesLoadOptions;
Property Value
Remarks
saved
Indicates whether the changes in the document have been saved. A value of true indicates that the document hasn't changed since it was saved.
saved?: boolean;
Property Value
boolean