Word.Interfaces.DocumentCreatedData interface
An interface describing the data returned by calling documentCreated.toJSON().
Properties
| body | Gets the |
| content |
Gets the collection of |
| custom |
Gets the custom XML parts in the document. |
| properties | Gets the properties of the document. |
| saved | Indicates whether the changes in the document have been saved. A value of |
| sections | Gets the collection of |
| settings | Gets the add-in's settings in the document. |
Property Details
body
Gets the Body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.
body?: Word.Interfaces.BodyData;
Property Value
Remarks
contentControls
Gets the collection of ContentControl objects in the document. This includes content controls in the body of the document, headers, footers, textboxes, etc.
contentControls?: Word.Interfaces.ContentControlData[];
Property Value
Remarks
customXmlParts
Gets the custom XML parts in the document.
customXmlParts?: Word.Interfaces.CustomXmlPartData[];
Property Value
Remarks
properties
Gets the properties of the document.
properties?: Word.Interfaces.DocumentPropertiesData;
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
Remarks
sections
Gets the collection of Section objects in the document.
sections?: Word.Interfaces.SectionData[];
Property Value
Remarks
settings
Gets the add-in's settings in the document.
settings?: Word.Interfaces.SettingData[];