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.1.Core.dll
NuGet Packages: DevExpress.RichEdit.Core, DevExpress.Win.Navigation
Declaration
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:
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();