Word) (FootnoteOptions 物件
代表指派給文件中某個範圍或選取範圍內之註腳的屬性。
註解
若要傳回 之 FootnoteOptions 物件使用 Range 或 Selection 物件。 使用 FootnoteOptions 物件,您可以指定不同的註腳屬性的文件的不同區域。 例如,您可能想簡介其餘的文件時顯示為星號時要顯示為小寫字母的長文件中的註腳。 下列範例會使用 NumberingRule 、 NumberStyle 及 StartingNumber 屬性來格式化使用中文件的第一個區段中的註腳。
Sub BookIntro()
Dim rngIntro As Range
'Sets the range as section one of the active document
Set rngIntro = ActiveDocument.Sections(1).Range
'Formats the EndnoteOptions properties
With rngIntro.FootnoteOptions
.NumberingRule = wdRestartPage
.NumberStyle = wdNoteNumberStyleLowercaseLetter
.StartingNumber = 1
End With
End Sub
請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。