EndnoteOptionsNumberStyle Property |
Specifies the number format for automatically numbered endnotes.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic NumberStyle NumberStyle { get; set; }
Public Property NumberStyle As NumberStyle
Get
Set
public:
virtual property NumberStyle NumberStyle {
NumberStyle get () sealed;
void set (NumberStyle value) sealed;
}
abstract NumberStyle : NumberStyle with get, set
override NumberStyle : NumberStyle with get, set
Property Value
Type:
NumberStyle
RemarksNot 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.
ExamplesShows 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