Options Property

Microsoft PowerPoint Visual Basic

Options Property

       

Returns an Options object that represents application options in Microsoft PowerPoint.

expression.Options

expression   Required. An expression that returns an Application object.

Example

Use the Options property to return the 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