DisplayPasteOptions Property
From Microsoft Word Visual Basic
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 Options
If .DisplayPasteOptions = False Then
.DisplayPasteOptions = True
End If
End With
End Sub