Footnotes.Separator property (Word)
Returns a Range object that represents the footnote separator.
Syntax
expression.Separator
expression Required. A variable that represents a 'Footnotes' collection.
Example
This example changes the footnote separator to a single border indented 3 inches from the right margin.
With ActiveDocument.Footnotes.Separator
.Delete
.Borders(wdBorderTop).LineStyle = wdLineStyleSingle
.ParagraphFormat.RightIndent = InchesToPoints(3)
End With
See also
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.