ContinuationSeparator Property
Applies To
Endnotes collection object, Footnotes collection object.
Description
Returns a Range object that represents the footnote or endnote continuation separator. Read-only.
See Also
ContinuationNotice property, ResetContinuationSeparator method, Separator property.
Example
This example replaces the current endnote continuation separator with a series of underscore characters.
With ActiveDocument.Endnotes.ContinuationSeparator
.Delete
.InsertBefore "____"
End With