Word) (PageNumbers.StartingNumber 屬性
會傳回或設定起始的附註數字、 行號、 或頁碼。 讀取/寫入的 Long。
語法
expression. StartingNumber
需要 expression。 會傳回 'PageNumbers' 物件的運算式。
註解
您必須位於整頁模式才能看見行號。
當套用至頁碼,這個屬性會傳回或設定指定之 HeaderFooter 物件的起始頁碼。 此數字可能有或可能不會顯示第一頁,視 ShowFirstPageNumber 屬性的設定而定。 RestartNumberingAtSection 屬性中,如果設為 False ,將會覆寫 StartingNumber 屬性讓的頁面編號可以繼續從上一節。
範例
此範例會建立新文件,將註腳的起始號碼設定為 10,並在插入點加入註腳。
Set myDoc = Documents.Add
With myDoc.Footnotes
.StartingNumber = 10
.Add Range:=Selection.Range, Text:="Text for a footnote"
End With
本範例會啟用使用中文件的行號。 起始編號會設定為 5、每顯示第五行編號,而編號會從檔中每個區段的開頭開始。
With ActiveDocument.PageSetup.LineNumbering
.Active = True
.StartingNumber = 5
.CountBy = 5
.RestartMode = wdRestartSection
End With
此範例設定頁碼屬性,然後新增頁碼至目前文件頁首。
With ActiveDocument.Sections(1) _
.Headers(wdHeaderFooterPrimary).PageNumbers
.NumberStyle = wdPageNumberStyleArabic
.IncludeChapterNumber = False
.RestartNumberingAtSection = True
.StartingNumber = 5
.Add PageNumberAlignment:=wdAlignPageNumberCenter, _
FirstPage:=True
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。