Footnotes.ResetContinuationNotice method (Word)

Resets the footnote or endnote continuation notice to the default notice.

Syntax

expression. ResetContinuationNotice

expression Required. A variable that represents a 'Footnotes' collection.

Remarks

The default notice is blank (no text).

Example

This example resets the footnote continuation notice and sets the starting number for footnote reference marks to 2 in Sales.doc.

With Documents("Sales.doc").Sections(1).Range.Footnotes 
 .ResetContinuationNotice 
 .NumberingRule = wdRestartContinuous 
 .StartingNumber = 2 
End With

See also

Footnotes Collection Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.