Word.Interfaces.DocumentCreatedLoadOptions interface
DocumentCreated 对象是由 Application.CreateDocument 创建的顶级对象。 DocumentCreated 对象是一个特殊的 Document 对象。
注解
属性
$all |
|
body | 获取文档的正文对象。 正文是排除页眉、页脚、脚注、文本框等的文本。 |
properties | 获取文档的属性。 |
saved | 指示是否已保存在文档中所做的更改。 如果值为 true,表示文档自上次保存以来并未更改。 |
属性详细信息
$all
$all
为加载选项指定将加载所有标量属性 ((例如Range.address
) ,但不加载导航属性 (如 Range.format.fill.color
) )。
$all?: boolean;
属性值
boolean
body
获取文档的正文对象。 正文是排除页眉、页脚、脚注、文本框等的文本。
body?: Word.Interfaces.BodyLoadOptions;
属性值
注解
properties
获取文档的属性。
properties?: Word.Interfaces.DocumentPropertiesLoadOptions;
属性值
注解
saved
指示是否已保存在文档中所做的更改。 如果值为 true,表示文档自上次保存以来并未更改。
saved?: boolean;
属性值
boolean