Footnotes.ContinuationSeparator property (Word)

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.

With ActiveDocument.Footnotes.ContinuationSeparator 
 .Delete 
 .InsertBefore "____" 
End With

See also

Footnotes 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.