Application.Options property (PowerPoint)
Returns an Options object that represents application options in Microsoft 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.
Sub TogglePasteOptionsButton()
With Application.Options
If .DisplayPasteOptions = False Then
.DisplayPasteOptions = True
End If
End With
End Sub
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.