FootnoteOptionsPosition Property |
Specifies the footnotes position.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic FootnotePosition Position { get; set; }Public Property Position As FootnotePosition
Get
Set
public:
property FootnotePosition Position {
FootnotePosition get ();
void set (FootnotePosition value);
}member Position : FootnotePosition with get, set
Property Value
Type:
FootnotePosition
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