Word) (Sections 物件
一群 區段 選取範圍、 範圍或文件中的物件。
註解
使用 Sections 屬性可傳回 Sections 集合。 下列範例會在使用中文件內最後一個節的結尾插入文字。
With ActiveDocument.Sections.Last.Range
.Collapse Direction:=wdCollapseEnd
.InsertAfter "end of document"
End With
使用 [ 新增 方法或 InsertBreak 若要新增至文件的新區段的方法。 下列範例會在使用中文件的開頭加入新區段。
Set myRange = ActiveDocument.Range(Start:=0, End:=0)
ActiveDocument.Sections.Add Range:=myRange
myRange.InsertParagraphAfter
下列範例會示範使用中文件內的節數、在選取範圍的第一個段落上方加上分節符號,然後再次顯示節數。
MsgBox ActiveDocument.Sections.Count & " sections"
Selection.Paragraphs(1).Range.InsertBreak _
Type:=wdSectionBreakContinuous
MsgBox ActiveDocument.Sections.Count & " sections"
使用 Sections (index) ,其中 index 是索引編號,可傳回單一 Section 物件。 下列範例會變更使用中文件內第一節的左邊緣和右頁面邊界。
With ActiveDocument.Sections(1).PageSetup
.LeftMargin = InchesToPoints(0.5)
.RightMargin = InchesToPoints(0.5)
End With
方法
名稱 |
---|
Add |
項目 |
屬性
名稱 |
---|
Application |
數目 |
Creator |
第一個 |
最後一筆 |
PageSetup |
Parent |
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。