EndnoteOptionsStartNumber Property

Specifies the starting number or character for the first automatically numbered endnotes.

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

Property Value

Type: Int32
Remarks

This property has effect only when RestartRule is set to Continuous.

Examples
Shows how to define the starting number or character for the first automatically numbered endnotes.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

doc.EndnoteOptions.StartNumber = 1;
See Also