Presentation.BuiltInDocumentProperties 屬性 (PowerPoint)
會傳回代表指定之簡報的所有內建文件屬性的 DocumentProperties 集合。 唯讀。
語法
expression。 BuiltInDocumentProperties
表達 代表 Presentation 物件的變數。
傳回值
DocumentProperties
註解
使用 CustomDocumentProperties 屬性,可以傳回自訂文件屬性的集合。
如需傳回集合中單一成員的資訊,請參閱 從集合傳回物件。
範例
這則範例會顯示使用中簡報之所有內建文件屬性的名稱。
For Each p In Application.ActivePresentation _
.BuiltInDocumentProperties
bidpList = bidpList & p.Name & Chr$(13)
Next
MsgBox bidpList
如果使用中簡報的作者為 Jake Jarmel,則此範例會設定此簡報的內建屬性 "Category"。
With Application.ActivePresentation.BuiltInDocumentProperties
If .Item("author").Value = "Jake Jarmel" Then
.Item("category").Value = "Creative Writing"
End If
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。