FootnoteOptionsPosition Property

Specifies the footnotes position.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public FootnotePosition Position { get; set; }

Property Value

Type: FootnotePosition
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