ContinuationNotice Property

Applies To

Endnotes collection object, Footnotes collection object.

Description

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

See Also

ContinuationSeparator property, ResetContinuationNotice method.

Example

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

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