ContinuationNotice Property

Microsoft Word Visual Basic

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

Example

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

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