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
Syntaxpublic int StartNumber { get; set; }
Public Property StartNumber As Integer
Get
Set
public:
virtual property int StartNumber {
int get () sealed;
void set (int value) sealed;
}
abstract StartNumber : int with get, set
override StartNumber : int with get, set
Property Value
Type:
Int32
Remarks
ExamplesShows 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