ResetContinuationSeparator 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