FootnotePosition Enumeration |
Defines the footnote position.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic enum FootnotePosition
Public Enumeration FootnotePosition
public enum class FootnotePosition
Members
| Member name | Value | Description |
---|
| BottomOfPage | 1 |
Footnotes are output at the bottom of each page.
|
| BeneathText | 2 |
Footnotes are output beneath text on each page.
|
Remarks
ExamplesShows how to define footnote position in the document.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");
doc.FootnoteOptions.Position = FootnotePosition.BeneathText;
See Also