Word.Interfaces.DocumentData interface
一个接口,用于描述通过调用 document.toJSON()
返回的数据。
属性
body | 获取main文档的正文对象。 正文是排除页眉、页脚、脚注、文本框等的文本。 |
change |
指定 ChangeTracking 模式。 |
content |
获取文档中的内容控件对象的集合。 这包括文档正文中的内容控件、页眉、页脚、文本框等。 |
custom |
获取文档中的自定义 XML 部件。 |
properties | 获取文档的属性。 |
saved | 指示是否已保存在文档中所做的更改。 如果值为 true,表示文档自上次保存以来并未更改。 |
sections | 获取文档中节对象的集合。 |
settings | 获取文档中加载项的设置。 |
属性详细信息
body
获取main文档的正文对象。 正文是排除页眉、页脚、脚注、文本框等的文本。
body?: Word.Interfaces.BodyData;
属性值
注解
changeTrackingMode
指定 ChangeTracking 模式。
changeTrackingMode?: Word.ChangeTrackingMode | "Off" | "TrackAll" | "TrackMineOnly";
属性值
Word.ChangeTrackingMode | "Off" | "TrackAll" | "TrackMineOnly"
注解
contentControls
获取文档中的内容控件对象的集合。 这包括文档正文中的内容控件、页眉、页脚、文本框等。
contentControls?: Word.Interfaces.ContentControlData[];
属性值
注解
customXmlParts
获取文档中的自定义 XML 部件。
customXmlParts?: Word.Interfaces.CustomXmlPartData[];
属性值
注解
properties
获取文档的属性。
properties?: Word.Interfaces.DocumentPropertiesData;
属性值
注解
saved
sections
获取文档中节对象的集合。
sections?: Word.Interfaces.SectionData[];
属性值
注解
settings
获取文档中加载项的设置。
settings?: Word.Interfaces.SettingData[];