PasteSmartCutPaste 属性

       

如果该属性值为 True,则 Microsoft Word 在文档中智能粘贴选定内容。Boolean 类型,可读写。

expression.PasteSmartCutPaste

expression   必需。该表达式返回“应用于”列表中的一个对象。

示例

如果禁用该选项,本示例设置 Word 智能粘贴选定文本。

Sub EnableSmartCutPaste()
    If Options.PasteSmartCutPaste = False Then
        Options.PasteSmartCutPaste = True
    End If
End Sub