How to: Add Line Numbering
- 2 minutes to read
The following example illustrates how to adjust line numbering to the specified document section.
To enable Line Numbering, set the RichEditView.AllowDisplayLineNumbers option for the current view to true and specify the SectionLineNumbering.CountBy property to a non-zero positive value.
In SimpleView and DraftView views line numbers are outside the default visible area, so you have to provide a space to display them by setting the left padding to a higher value (use the SimpleView.Padding or the DraftView.Padding property, respectively).
The line numbering font face and font color are specified by the Line Number character style.
To specify line numbering, the following properties are provided:
- SectionLineNumbering.Start - sets the starting line number;
- SectionLineNumbering.Distance - sets the distance between the line number and the start of the line;
- SectionLineNumbering.RestartType - sets when the line numbering should be reset to the starting line number;
All the line numbering parameters can be accessed through the Section.LineNumbering property.
using DevExpress.XtraRichEdit.API.Native;
using DevExpress.XtraRichEdit;
using DevExpress.Office;
static void LineNumbering(RichEditDocumentServer wordProcessor) {
// Load a document from a file.
wordProcessor.LoadDocument("Documents\\Grimm.docx", DocumentFormat.OpenXml);
// Access a document.
Document document = wordProcessor.Document;
// Specify the document’s measure units.
document.Unit = DevExpress.Office.DocumentUnit.Inch;
// Access the first document section.
Section sec = document.Sections[0];
// Specify line numbering parameters for the section.
sec.LineNumbering.CountBy = 2;
sec.LineNumbering.Start = 1;
sec.LineNumbering.Distance = 0.25f;
sec.LineNumbering.RestartType = LineNumberingRestart.NewSection;
}