返回 Options 对象,该对象代表 Microsoft PowerPoint 中的应用程序选项。
expression.Options
expression 必选。该表达式返回一个 Application 对象。
使用 Options 属性返回 Options 对象。以下示例设置 PowerPoint 的三个应用程序选项。
Sub TogglePasteOptionsButton()
    With Application.Options
        If .DisplayPasteOptions = False Then
            .DisplayPasteOptions = True
        End If
    End With
End Sub