Options.PasteSmartCutPaste Property

Word Developer Reference

True if Microsoft Word intelligently pastes selections into a document. Read/write Boolean.

Syntax

expression.PasteSmartCutPaste

expression   A variable that represents a Options object.

Example

This example sets Word to enable intelligent selection pasting if the option has been disabled.

Visual Basic for Applications
  Sub EnableSmartCutPaste()
    If Options.PasteSmartCutPaste = False Then
        Options.PasteSmartCutPaste = True
    End If
End Sub

See Also