共用方式為


Word) (Section.Headers 屬性

會傳回 HeadersFooters 集合,代表所指定區段的標題。 唯讀。

語法

expressionHeaders

表達 代表 'Section' 物件的變數。

註解

如需傳回集合中單一成員的資訊,請參閱 從集合傳回物件。 若要傳回代表所指定區段的頁尾 HeadersFooters 集合,請使用 Footers 屬性。

範例

本範例會將置中頁碼新增至使用中檔內的每一頁,但第一個除外。 (會為第一頁建立個別的標頭。)

With ActiveDocument.Sections(1).Headers(wdHeaderFooterPrimary) 
 .PageNumbers.Add _ 
 PageNumberAlignment:=wdAlignPageNumberCenter, _ 
 FirstPage:=False 
End With

本範例會新增文字到使用中文件的第一頁頁首。

ActiveDocument.PageSetup.DifferentFirstPageHeaderFooter = True 
With ActiveDocument.Sections(1).Headers(wdHeaderFooterFirstPage) 
 .Range.InsertAfter("First Page Text") 
 .Range.Paragraphs.Alignment = wdAlignParagraphRight 
End With

另請參閱

Section 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應