Word) (Editor.Range 屬性
會傳回代表指定物件中包含的文件部分的 Range 物件。
運算式。範圍
需要 expression。 代表 'Editor' 物件的變數。
從文件中某個範圍或從圖案集合中傳回圖案範圍的相關資訊,請參閱 Range 方法。
本範例會將 [標題 1] 樣式套用至使用中文件的第一段
ActiveDocument.Paragraphs(1).Range.Style = wdStyleHeading1
本範例會複製表格一中的第一列。
If ActiveDocument.Tables.Count >= 1 Then _
ActiveDocument.Tables(1).Rows(1).Range.Copy
本範例會變更文件中第一個註解的文字。
With ActiveDocument.Comments(1).Range
.Delete
.InsertBefore "new comment text"
End With
本範例會在第一節結尾插入文字。
Set myRange = ActiveDocument.Sections(1).Range
With myRange
.MoveEnd Unit:=wdCharacter, Count:=-1
.Collapse Direction:=wdCollapseEnd
.InsertParagraphAfter
.InsertAfter "End of section"
End With
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。