Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TablePropertiesBase.RightToLeftTableLayout Property

Specifies whether to change the table layout’s direction to right-to-left.

Namespace: DevExpress.XtraRichEdit.API.Native

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

NuGet Package: DevExpress.RichEdit.Core

#Declaration

bool? RightToLeftTableLayout { get; set; }

#Property Value

Type Description
Nullable<Boolean>

true, to change the table direction, false to keep the left-to-right direction, or null (Nothing for VB) for a mixture of states.

#Remarks

Set the RightToLeftTableLayout property to true to reorder table columns and apply the table indent (specified by the Table.Indent property) to the right side of the table. The image below shows the resulting table appearance:

IMAGE

Use the ParagraphPropertiesBase.RightToLeft property to change the reading order of cells’ content. You can specify this property for a given paragraph or as a table style parameter, as shown below:

document.BeginUpdate();

// Create a new table style:
TableStyle tStyleMain = document.TableStyles.CreateNew();

// Set the table layout direction:
tStyleMain.RightToLeft = true;

// Set the table content direction:
tStyleMain.RightToLeftTableLayout = true;

tStyleMain.Name = "MyTableStyle";

// Add the style to the collection:
document.TableStyles.Add(tStyleMain);
document.EndUpdate();
See Also