Endnotes.ContinuationNotice property (Word)

Returns a Range object that represents the endnote continuation notice. Read-only.

Syntax

expression. ContinuationNotice

expression A variable that represents an 'Endnotes' collection.

Example

This example replaces the current footnote continuation notice with the text "Continued...".

With ActiveDocument.Footnotes.ContinuationNotice 
 .Delete 
 .InsertBefore "Continued..." 
End With

See also

Endnotes Collection Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.