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

DXRichEditBehaviorOptions.RightToLeftTextDirection Property

Specifies whether the right-to-left text direction is permitted.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v19.1.dll

Declaration

public DocumentCapability RightToLeftTextDirection { get; set; }

Property Value

Type Description
DocumentCapability

One of the DocumentCapability enumeration values indicating the feature availability.

Property Paths

You can access this nested property as listed below:

Object Type Path to RightToLeftTextDirection
RichEditControl
.BehaviorOptions.RightToLeftTextDirection

Remarks

The RightToLeftTextDirection property affects the behavior of the following commands:

  • ToggleParagraphRightToLeftCommand

  • ToggleParagraphLeftToRightCommand

  • ToggleParagraphAlignmentArabicJustifyCommand

  • ToggleParagraphAlignmentArabicJustifyGroupCommand

  • ToggleParagraphAlignmentJustifyHighCommand

  • ToggleParagraphAlignmentJustifyLowCommand

  • ToggleParagraphAlignmentJustifyMediumCommand

The ToggleParagraphRightToLeftCommand and ToggleParagraphLeftToRightCommand commands are executed by the Left-To-Right Text Direction and Right-To-Left Text Direction buttons on the Home ribbon tab and by the Right-to-left and Left-to-right radio buttons in the Paragraph dialog.

IMAGES

The ToggleParagraphAlignmentArabicJustifyCommand, ToggleParagraphAlignmentArabicJustifyGroupCommand, ToggleParagraphAlignmentJustifyHighCommand, ToggleParagraphAlignmentJustifyLowCommand and ToggleParagraphAlignmentJustifyMediumCommand are executed by the Justify drop-down menu items on the Home ribbon tab. These items are also available in the Alignment list in the Paragraph dialog.

IMAGE

These UI items are visible to users who have RTL languages installed on their machine.

The DXRichEditDocumentCapabilitiesOptions.ParagraphFormatting property also affects the availability of the above-mentioned commands. The RightToLeftTextDirection property has a priority over the ParagraphFormatting option.

Use the DXRichEditBehaviorOptions.EastAsianTextAlignment property to manage the ToggleParagraphAlignmentDistributeCommand and ToggleParagraphAlignmentThaiDistributeCommand commands’ availability.

See Also