DocumentBase.BuiltInDocumentProperties 属性
获取一个 DocumentProperties 集合,该集合表示文档的所有内置文档属性。
命名空间: Microsoft.Office.Tools.Word
程序集: Microsoft.Office.Tools.Word.v4.0.Utilities(在 Microsoft.Office.Tools.Word.v4.0.Utilities.dll 中)
语法
声明
Public ReadOnly Property BuiltInDocumentProperties As Object
public Object BuiltInDocumentProperties { get; }
属性值
类型:System.Object
一个 DocumentProperties 集合,表示文档的所有内置文档属性。
备注
若要返回一个表示特定内置文档属性的 DocumentProperty,请在 Visual Basic 中使用 BuiltInDocumentProperties(index),或者在 C# 中使用 BuiltInDocumentProperties[index],其中 index 是 WdBuiltInProperty 值之一。
如果 Microsoft Office Word 没有为某个内置文档属性定义值,则在读取该文档属性的 Value 属性时将引发异常。
使用 CustomDocumentProperties 属性返回自定义文档属性的集合。
示例
下面的代码示例显示一条消息,该消息显示了文档的创建日期和时间。 若要使用此示例,请从文档级项目内的 ThisDocument 类中运行此示例。
Private Sub DocumentBuiltInDocumentProperties()
MessageBox.Show("Document creation: " & CType(Me.BuiltInDocumentProperties, _
Office.DocumentProperties)(Word.WdBuiltInProperty.wdPropertyTimeCreated). _
Value.ToString())
End Sub
private void DocumentBuiltInDocumentProperties()
{
MessageBox.Show("Document creation: " + ((Office.DocumentProperties)
(this.BuiltInDocumentProperties))[Word.WdBuiltInProperty.
wdPropertyTimeCreated].Value.ToString());
}
.NET Framework 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。