Options Object

Options Object
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Application
Aa201191.parchild(en-us,office.10).gifOptions

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