Endnotes.ContinuationSeparator Property (Word)
Returns a Range object that represents the endnote continuation separator. Read-only.
Syntax
expression .ContinuationSeparator
expression A variable that represents an Endnotes collection.
Example
This example replaces the current endnote continuation separator with a series of underscore characters.
With ActiveDocument.Endnotes.ContinuationSeparator
.Delete
.InsertBefore "____"
End With