Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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

bool ContinueNumbering { get; set; }

#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