DisplayPasteOptions Property

Microsoft PowerPoint Visual Basic

Show All

DisplayPasteOptions Property

       

MsoTrue for Microsoft PowerPoint to display the Paste Options button, which displays directly under newly pasted text. Read/write MsoTriState.

MsoTriState can be one of these MsoTriState constants.
msoCTrue
msoFalse
msoTriStateMixed
msoTriStateToggle
msoTrue

expression.DisplayPasteOptions

expression   Required. An expression that returns an Options object.

Example

This example enables the Paste Options button if the option has been disabled.

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