EndnoteOptions Class

Represents the endnote numbering options for a document or section.
Inheritance Hierarchy
SystemObject
  Aspose.WordsEndnoteOptions

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public sealed class EndnoteOptions

The EndnoteOptions type exposes the following members.

Properties
  NameDescription
Public propertyCode exampleNumberStyle
Specifies the number format for automatically numbered endnotes.
Public propertyCode examplePosition
Specifies the endnotes position.
Public propertyCode exampleRestartRule
Determines when automatic numbering restarts.
Public propertyCode exampleStartNumber
Specifies the starting number or character for the first automatically numbered endnotes.
Methods
  NameDescription
Public methodEquals (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Public methodToString (Inherited from Object.)
Remarks
Examples
Shows how to define endnote position in the document.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

doc.EndnoteOptions.Position = EndnotePosition.EndOfSection;
See Also