Partager via


Options.DisplayPasteOptions Property (PowerPoint)

Determines whether Microsoft PowerPoint displays the Paste Options button, which appears directly under newly pasted text. Read/write.

Syntax

expression .DisplayPasteOptions

expression A variable that represents a Options object.

Return Value

MsoTriState

Remarks

The value of the DisplayPasteOptions property can be one of these MsoTriState constants.

Constant

Description

msoFalse

The PasteOptions button is not displayed.

msoTrue

The PasteOptions button is displayed.

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

See Also

Concepts

Options Object

Options Object Members