Options.INSKeyForPaste Property

Word Developer Reference

True if the INS key can be used for pasting the Clipboard contents. Read/write Boolean.

Syntax

expression.INSKeyForPaste

expression   An expression that returns an Options object.

Example

This example enables the INS key to be used for pasting the contents of the Clipboard.

Visual Basic for Applications
  Options.INSKeyForPaste = True

This example returns the status of the Use the INS key for paste option on the Edit tab in the Options dialog box.

Visual Basic for Applications
  Dim blnTemp As Boolean

blnTemp = Options.INSKeyForPaste

See Also