Paragraph Properties Dialog
This dialog allows you edit the settings of the current (where the caret is positioned) paragraph in the document.

The dialog can be opened from the dialog launcher button at the bottom right corner of the Paragraph group in the Home tab of the RadRichTextBoxRibbonUI or via the in the same option in the right-click menu (context menu) of RadRichTextBox.


The paragraph properties dialog allows you to open the Tab Stops dialog via its Tabs button.

Showing the Dialog Manually
The dialog can be shown by executing the ShowParagraphPropertiesDialogCommand. See how to bind the command to an external button in the Commands article.
Executing the show dialog command
this.richTextBox.Commands.ShowParagraphPropertiesDialogCommand.Execute(null);
Alternatively, call the ShowParagraphPropertiesDialog method of RadRichTextBox.
Using the show dialog method
this.richTextBox.ShowParagraphPropertiesDialog();
The Tab Stops dialog can be manually opened with the ShowTabStopsPropertiesDialogCommand or with the ShowTabStopsPropertiesDialog method of RadRichTextBox.