Endnotes.ResetContinuationSeparator Method

Word Developer Reference

Resets the endnote continuation separator to the default separator.

Syntax

expression.ResetContinuationSeparator

expression   Required. A variable that represents an Endnotes collection.

Remarks

The default separator is a long horizontal line that separates document text from notes continued from the previous page.

Example

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

Visual Basic for Applications
  Dim docLoop As Document

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

See Also