Back to Devexpress

Paragraph and Tabs Dialogs

wpf-10390-controls-and-libraries-rich-text-editor-visual-elements-dialogs-paragraph-and-tabs-dialogs.md

latest6.0 KB
Original Source

Paragraph and Tabs Dialogs

  • Nov 26, 2021
  • 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 Create a Simple Rich Text Editor for details on how to provide the Ribbon UI for the RichEditControl.

The Paragraph dialog is also available from the context menu.

To invoke the Paragraph and Tabs dialogs you can use the ShowParagraphFormCommand and ShowTabsFormCommand commands.

The dialog consists of the following tabs:

Indents and Spacing

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:

APIDescription
ParagraphProperties.AlignmentGets or sets text alignment within a paragraph.
ParagraphProperties.OutlineLevelGets or sets the paragraph’s outline level
ParagraphProperties.RightToLeftSpecifies the paragraph’s text direction.
ParagraphProperties.LeftIndentGets or sets the paragraph’s left indent
ParagraphProperties.RightIndentGets or sets paragraph’s right indent
ParagraphProperties.FirstLineIndentTypeGets or sets a value specifying whether and how the first line in a paragraph is indented.
ParagraphProperties.FirstLineIndentGets or sets the paragraph’s first line indent.
ParagraphProperties.SpacingBeforeGets or sets the spacing before the current paragraph.
ParagraphProperties.SpacingAfterGets or sets the spacing after the current paragraph.
ParagraphProperties.LineSpacingTypeGets or sets the spacing type between paragraph’s lines.
ParagraphProperties.LineSpacingGets or sets the line spacing value
ParagraphProperties.ContextualSpacingGets or sets whether to suppress addition of additional space (contextual spacing) between paragraphs of the same style.

Line and Page Breaks

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:

APIDescription
ParagraphProperties.WidowOrphanControlGets or sets whether to apply control over the widow and orphan lines.
ParagraphProperties.KeepWithNextGets or sets whether to put a break between the current paragraph and the next paragraph
ParagraphProperties.KeepLinesTogetherGets or sets whether to prevent all page breaks that interrupt a paragraph.
ParagraphProperties.PageBreakBeforeGets or sets whether to insert a page break before specified paragraph.

Tabs

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

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 format paragraphs in code.