Options Object

Microsoft PowerPoint Visual Basic

Options Object

Application Options

Represents application options in Microsoft PowerPoint.

Using the Options object

Use the Options property to return an Options object. The following example sets three application options for PowerPoint.

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