EndnoteOptionsNumberStyle Property

Specifies the number format for automatically numbered endnotes.

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

Property Value

Type: NumberStyle
Remarks

Not all number styles are applicable for this property. For the list of applicable number styles see the Insert Footnote or Endnote dialog box in Microsoft Word. If you select a number style that is not applicable, Microsoft Word will revert to a default value.

Examples
Shows how to define numbering format for endnotes in the document.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

doc.EndnoteOptions.NumberStyle = NumberStyle.Arabic1;
See Also