Click or drag to resize

FootnoteNumberingRule Enumeration

Determines when automatic footnote or endnote numbering restarts.

Namespace:  Aspose.Words
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public enum FootnoteNumberingRule
Members
  Member nameValueDescription
Continuous0 Numbering continuous throughout the document.
RestartSection1 Numbering restarts at each section.
RestartPage2 Numbering restarts at each page. Valid for footnotes only.
Default0 Equals Continuous.
Remarks
Examples
Shows how to define when automatic numbering for footnotes restarts in the document.
Document doc = new Document(MyDir + "Footnotes and endnotes.docx");

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