Word.Interfaces.DocumentData interface
An interface describing the data returned by calling document.toJSON()
.
Properties
body | Gets the body object of the main document. The body is the text that excludes headers, footers, footnotes, textboxes, etc. |
change |
Specifies the ChangeTracking mode. |
content |
Gets the collection of content control objects in the document. This includes content controls in the body of the document, headers, footers, textboxes, etc. |
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 true indicates that the document hasn't changed since it was saved. |
sections | Gets the collection of section objects in the document. |
settings | Gets the add-in's settings in the document. |
Property Details
body
Gets the body object of the main document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.
body?: Word.Interfaces.BodyData;
Property Value
Remarks
changeTrackingMode
Specifies the ChangeTracking mode.
changeTrackingMode?: Word.ChangeTrackingMode | "Off" | "TrackAll" | "TrackMineOnly";
Property Value
Word.ChangeTrackingMode | "Off" | "TrackAll" | "TrackMineOnly"
Remarks
contentControls
Gets the collection of content control 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[];
Property Value
Remarks
Office Add-ins