PowerPoint) (Application.Options 属性

返回一个 Options 对象,该对象代表 Microsoft PowerPoint 中的应用程序选项。

语法

expressionOptions

expression:表示 Application 对象的变量。

返回值

选项

示例

选项 属性用于返回 选项 的对象。 下面的示例设置三个 PowerPoint 应用程序选项。

Sub TogglePasteOptionsButton()

    With Application.Options

        If .DisplayPasteOptions = False Then

            .DisplayPasteOptions = True

        End If

    End With

End Sub

另请参阅

Application 对象

支持和反馈

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