New to Telerik UI for WPF? Download free 30-day trial

Paragraph Properties Dialog

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

An image showing the paragraph properties dialog of RadRichTextBox for WPF

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.

An image showing the button that opens the paragraph properties dialog of RadRichTextBox for WPF

An image showing the context menu that opens the paragraph properties dialog of RadRichTextBox for WPF

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

An image showing the tab stops dialog of RadRichTextBox for WPF

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.
In this article