Field.Cut 方法 (Word)
将指定域从文档中移到剪贴板上。
表达式。削减
expression 是必需的。 一个代表“Field”对象的变量。
本示例删除活动文档的第一个域,并将该域粘贴到插入点。
If ActiveDocument.Fields.Count >= 1 Then
ActiveDocument.Fields(1).Cut
Selection.Collapse Direction:=wdCollapseEnd
Selection.Paste
End If
本示例删除第一段的第一个单词,并将该单词粘贴到该段的末尾。
With ActiveDocument.Paragraphs(1).Range
.Words(1).Cut
.Collapse Direction:=wdCollapseEnd
.Move Unit:=wdCharacter, Count:=-1
.Paste
End With
本示例删除所选内容,并将其粘贴到新文档中。
If Selection.Type = wdSelectionNormal Then
Selection.Cut
Documents.Add.Content.Paste
End If
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。