Share via


Footnotes.ContinuationSeparator Property

Word Developer Reference

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

Syntax

expression.ContinuationSeparator

expression   A variable that represents a Footnotes collection.

Example

This example replaces the current endnote continuation separator with a series of underscore characters.

Visual Basic for Applications
  With ActiveDocument.Footnotes.ContinuationSeparator
    .Delete
    .InsertBefore "____"
End With

See Also