Skip to main content

RichEditBehaviorOptions.RightToLeftTextDirection Property

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

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v23.2.Core.dll

NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation

Declaration

[DefaultValue(DocumentCapability.Default)]
public virtual DocumentCapability RightToLeftTextDirection { get; set; }

Property Value

Type Default Description
DocumentCapability Default

One of the DocumentCapability enumeration values indicating the feature availability.

Available values:

Name Description
Default

The value is determined by the current setting. The default value is automatically set if it is not explicitly specified.

Disabled

The feature is not allowed and the corresponding commands are shown disabled.

Enabled

The feature is available and the corresponding commands are shown enabled.

Hidden

The feature is not available and the corresponding commands are hidden.

Property Paths

You can access this nested property as listed below:

Object Type Path to RightToLeftTextDirection
RichEditControlOptionsBase
.Behavior .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.

ribbon_items

paragraph_dialog

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

The property also affects the Table Direction option specified in the Table Properties dialog.

table-properties-dialog

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

The DocumentCapabilitiesOptions.ParagraphFormatting property also affects the availability of the above-mentioned commands. This options has a priority over the RightToLeftTextDirection.

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

See Also