Options.DisplayPasteOptions property (Word)
True for Microsoft Word to display the Paste Options button, which displays directly under newly pasted text. Read/write Boolean.
Syntax
expression. DisplayPasteOptions
expression An expression that returns an Options object.
Example
This example enables the Paste Options button if the option has been disabled.
Sub ShowPasteOptionsButton()
With 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.