SectionPageNumbering.ContinueNumbering Property
Gets or sets whether the numbering should be continued from the previous section or should start from the beginning.
Namespace: DevExpress.XtraRichEdit.API.Native
Assembly: DevExpress.RichEdit.v24.2.Core.dll
NuGet Package: DevExpress.RichEdit.Core
Declaration
Property Value
Type | Description |
---|---|
Boolean | True, to continue numbering; otherwise, false. |
Remarks
Reset the numbering options by setting the SectionPageNumbering.ContinueNumbering property to false before you apply new options.
The code sample below specifies the initial number and the NumberingFormat.CardinalText numbering format.
wordProcessor1.Document.Sections[0].PageNumbering.ContinueNumbering = false;
wordProcessor1.Document.Sections[0].PageNumbering.FirstPageNumber = 3;
wordProcessor1.Document.Sections[0].PageNumbering.NumberingFormat = NumberingFormat.CardinalText;
wordProcessor1.Document.Fields.Update();
See Also