ResetContinuationSeparator Method

Applies To

Endnotes collection object, Footnotes collection object.

Description

Resets the footnote or endnote continuation separator to the default separator. The default separator is a long horizontal line that separates document text from notes continued from the previous page.

Syntax

expression.ResetContinuationSeparator

expression Required. An expression that returns an Endnotes or Footnotes object.

See Also

ContinuationSeparator property, ResetContinuationNotice method, ResetSeparator method.

Example

This example resets the footnote continuation separator to the default separator line.

ActiveDocument.Footnotes.ResetContinuationSeparator
This example resets the endnote continuation separator for the first section in each open document.

For Each doc In Documents
    doc.Sections(1).Range.Endnotes.ResetContinuationSeparator
Next doc