Document.CustomDocumentProperties 属性 (Word)

返回一个 DocumentProperties 集合,该集合代表指定文档的所有自定义文档属性。

语法

表达式CustomDocumentProperties

expression 是必需的。 一个代表 Document 对象的变量。

备注

使用 BuiltInDocumentProperties 属性返回的内置文档属性的集合。

msoPropertyTypeString (MsoDocProperties) 的长度不能超过 255 个字符。

有关返回集合的单个成员的信息,请参阅 从集合中返回对象

示例

本示例在活动文档的末尾插入自定义文档属性列表。

Set myRange = ActiveDocument.Content 
myRange.Collapse Direction:=wdCollapseEnd 
For Each prop In ActiveDocument.CustomDocumentProperties 
 With myRange 
 .InsertParagraphAfter 
 .InsertAfter prop.Name & "= " 
 .InsertAfter prop.Value 
 End With 
Next

本示例将自定义文档属性添加到 Sales.doc。

thename = InputBox("Please type your name", "Name") 
Documents("Sales.doc").CustomDocumentProperties.Add _ 
 Name:="YourName", LinkToContent:=False, Value:=thename, _ 
 Type:=msoPropertyTypeString

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。