Presentation.BuiltInDocumentProperties 属性 (PowerPoint)

返回一个 DocumentProperties 集合,代表指定演示文稿的所有内置文档属性。 此为只读属性。

语法

expressionBuiltInDocumentProperties

表达 一个代表 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。