Location Property

Applies To

Endnotes collection object, Footnotes collection object.

Description

Footnotes object: Returns or sets the position of all footnotes. Can be either of the following WdFootnoteLocation constants: wdBottomOfPage or wdBeneathText. Read/write Long.

Endnotes object: Returns or sets the position of all endnotes. Can be either of the following WdEndnoteLocation constants: wdEndOfSection or wdEndOfDocument. Read/write Long.

See Also

NumberingRule property, SuppressEndnotes property.

Example

This example positions footnotes at the bottom of each page.

ActiveDocument.Footnotes.Location = wdBottomOfPage
This example positions all endnotes at the end of sections.

ActiveDocument.Endnotes.Location = wdEndOfSection