PageSetupEndnoteOptions Property |
Provides options that control numbering and positioning of endnotes in this section.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic EndnoteOptions EndnoteOptions { get; }
Public ReadOnly Property EndnoteOptions As EndnoteOptions
Get
public:
property EndnoteOptions^ EndnoteOptions {
EndnoteOptions^ get ();
}
member EndnoteOptions : EndnoteOptions with get
Property Value
Type:
EndnoteOptions
ExamplesShows how to set options for endnotes in current section.
Document doc = new Document();
PageSetup pageSetup = doc.Sections[0].PageSetup;
pageSetup.EndnoteOptions.Position = EndnotePosition.EndOfSection;
pageSetup.EndnoteOptions.NumberStyle = NumberStyle.Bullet;
pageSetup.EndnoteOptions.StartNumber = 1;
pageSetup.EndnoteOptions.RestartRule = FootnoteNumberingRule.RestartPage;
See Also