Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

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.v20.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