Word) (Field.Cut 方法
會從文件中移除指定的欄位,並將它置於剪貼簿。
運算式。削減
需要 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 支援與意見反應。