FootnoteOptions Property

FootnoteOptions Property
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Returns FootnoteOptions object that represents the footnotes in a selection or range.

expression.FootnoteOptions

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

This example sets the numbering rule in section two to restart at the beginning of the new section.

  Sub SetFootnoteOptionsRange()
    ActiveDocument.Sections(2).Range.FootnoteOptions _
        .NumberingRule = wdRestartSection
End Sub