Application.Options Property

PowerPoint Developer Reference

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

Syntax

expression.Options

expression   A variable that represents an Application object.

Return Value
Options

Example

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

Visual Basic for Applications
  Sub TogglePasteOptionsButton()
    With Application.Options
        If .DisplayPasteOptions = False Then
            .DisplayPasteOptions = True
        End If
    End With
End Sub

See Also