Skip to main content
A newer version of this page is available. .

Paragraph and Tabs Dialogs

  • 3 minutes to read

The Paragraph dialog enables end-users to format paragraphs (change the alignment of text and spacing between lines, specify paragraph indents, etc.).

End-users can invoke this dialog using the Paragraph group’s dialog box launcher on the Home ribbon tab. Refer to the How to: Create the RichEditControl with a Ribbon UI for details on how to provide the Ribbon UI for the RichEditControl.

RichEdit_ShowParagraphDialog_RibbonCaptionButton

The Paragraph dialog is also available from the context menu.

RTEParagraphContextMenu

Execute the ShowParagraphFormCommand and ShowTabsFormCommand commands to invoke the Paragraph and Tabs dialogs.

The dialog consists of the following tabs:

Indents and Spacing

RTEParagraphMenu

Options under this tab allows end-users to change the text alignment, define spacing between lines and specify paragraph indents.

The following API allows you to specify the Indents and Spacing options in code:

API Description
ParagraphPropertiesBase.Alignment Gets or sets the paragraph’s text alignment.
ParagraphPropertiesBase.OutlineLevel Gets or sets the paragraph’s outline level.
ParagraphPropertiesBase.RightToLeft Specifies the paragraph’s text direction.
ParagraphPropertiesBase.LeftIndent Gets or sets a paragraph’s left indent.
ParagraphPropertiesBase.RightIndent Gets or sets the paragraph’s right indent.
ParagraphPropertiesBase.FirstLineIndentType Gets or sets a value specifying whether and how a paragraph’s first line is indented.
ParagraphPropertiesBase.FirstLineIndent Gets or sets a value specifying the indent of the first line of a paragraph.
ParagraphPropertiesBase.SpacingBefore Gets or sets the spacing before the current paragraph.
ParagraphPropertiesBase.SpacingAfter Gets or sets the spacing after the current paragraph.
ParagraphPropertiesBase.LineSpacingType Gets or sets a value which determines the spacing between paragraph’s lines.
ParagraphPropertiesBase.LineSpacing Gets or sets a line spacing value.
ParagraphPropertiesBase.ContextualSpacing Gets or sets whether to suppress addition of additional space (contextual spacing) between paragraphs of the same style.

Line and Page Breaks

XtraRichEdit_ParagraphAndTabsDialog_2

End-users can use this tab to specify pagination options. The table below lists API you can use to specify Line and Page Breaks options:

API Description
ParagraphPropertiesBase.WidowOrphanControl Gets or sets whether to apply control over the widow and orphan lines.
ParagraphPropertiesBase.KeepWithNext Gets or sets whether to put a break between the current paragraph and the next paragraph.
ParagraphPropertiesBase.KeepLinesTogether Gets or sets whether to prevent all page breaks that interrupt a paragraph.
ParagraphPropertiesBase.PageBreakBefore Gets or sets whether to insert a page break before specified paragraph(s).

Tabs

From the Paragraph dialog, end-users can invoke the Tabs dialog allowing them to set the tab stops and their characteristics.

TabsForm

To modify tab stops in a particular paragraph, use the ParagraphPropertiesWithTabs.BeginUpdateTabs and ParagraphPropertiesWithTabs.EndUpdateTabs paired methods .

Tip

Refer to the How to: Change Formatting of the Current Paragraph document to get an example on how to modify paragraph formatting in code.

Handle the RichEditControl.ParagraphFormShowing or RichEditControl.TabsFormShowing event to customize the default Paragraph or Tabs dialog (modify captions, set default dialog values, implement custom validation, etc.) or substitute it with completely new dialog. Refer to the How to: Customize the Search Form or How to: Customize the Hyperlink Form document for an example.