ResetContinuationSeparator Method

Microsoft Word Visual Basic

ResetContinuationSeparator Method

       

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.

expression.ResetContinuationSeparator

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

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.

Dim docLoop As Document

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