title | page_title | description | slug | tags | published | position |
---|---|---|---|---|---|---|
Line Numbers Dialog |
Line Numbering Dialog |
Check our "Line Numbers Dialog" documentation article for the RadRichTextBox WPF control. |
richtextbox-dialogs-line-numbers |
line,numbers,numbering |
true |
1 |
This dialog allows you to adjust the [line numbering]({%slug radrichtextbox-features-line-numbering%}) in the document.
The dialog can be opened from the Line Numbers drop down button in the Page Layout tab of the [RadRichTextBoxRibbonUI]({%slug radrichtextbox-features-radrichtextboxribbonui%}).
The dialog can be shown by executing the ShowLineNumberingDialogCommand
. See how to bind the command to an external button in the [Commands]({%slug radrichtextbox-features-commands%}) article.
{{region richtextbox-dialogs-line-numbers-0}} this.richTextBox.Commands.ShowLineNumberingDialogCommand.Execute(null); {{endregion}}
Alternatively, call the ShowInsertHyperlinkDialog
method of RadRichTextBox
.
{{region richtextbox-dialogs-line-numbers-1}} this.richTextBox.ShowLineNumberingDialog(); {{endregion}}