EndnoteOptionsRestartRule Property

Determines when automatic numbering restarts.

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

Property Value

Type: FootnoteNumberingRule
Remarks

Not all values are applicable to endnotes. To ascertain which values are applicable see FootnoteNumberingRule.

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

doc.EndnoteOptions.RestartRule = FootnoteNumberingRule.RestartPage;
See Also