FootnoteNumberingRule Enumeration |
Determines when automatic footnote or endnote numbering restarts.
Namespace:
Aspose.Words
Assembly:
Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntaxpublic enum FootnoteNumberingRule
Public Enumeration FootnoteNumberingRule
public enum class FootnoteNumberingRule
type FootnoteNumberingRule
Members
| Member name | Value | Description |
---|
| Continuous | 0 |
Numbering continuous throughout the document.
|
| RestartSection | 1 |
Numbering restarts at each section.
|
| RestartPage | 2 |
Numbering restarts at each page. Valid for footnotes only.
|
| Default | 0 |
Equals Continuous.
|
Remarks
ExamplesShows 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