Options 对象

         
Application
Options

代表 Microsoft PowerPoint 中的应用程序选项。

使用 Options 对象

使用 Options 属性返回一个 Options 对象。以下示例设置 PowerPoint 的三个应用程序选项。

Sub TogglePasteOptionsButton()
    With Application.Options
        If .DisplayPasteOptions = False Then
            .DisplayPasteOptions = True
        End If
    End With
End Sub