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
Syntax
public EndnoteOptions EndnoteOptions { get; }

Property Value

Type: EndnoteOptions
Examples
Shows 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