Footnotes.ContinuationNotice Property

Word Developer Reference

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

Syntax

expression.ContinuationNotice

expression   A variable that represents a Footnotes collection.

Example

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

Visual Basic for Applications
  With ActiveDocument.Footnotes.ContinuationNotice
    .Delete
    .InsertBefore "Continued..."
End With

See Also