Click or drag to resize

FootnotePosition Enumeration

Defines the footnote position.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public enum FootnotePosition
Members
  Member nameValueDescription
BottomOfPage1 Footnotes are output at the bottom of each page.
BeneathText2 Footnotes are output beneath text on each page.
Remarks
Examples
Shows how to define footnote position in the document.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

doc.FootnoteOptions.Position = FootnotePosition.BeneathText;
See Also