EndnoteOptionsRestartRule Property |
Determines when automatic numbering restarts.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic FootnoteNumberingRule RestartRule { get; set; }
Public Property RestartRule As FootnoteNumberingRule
Get
Set
public:
virtual property FootnoteNumberingRule RestartRule {
FootnoteNumberingRule get () sealed;
void set (FootnoteNumberingRule value) sealed;
}
abstract RestartRule : FootnoteNumberingRule with get, set
override RestartRule : FootnoteNumberingRule with get, set
Property Value
Type:
FootnoteNumberingRule
RemarksNot all values are applicable to endnotes.
To ascertain which values are applicable see FootnoteNumberingRule.
ExamplesShows 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