TdxCustomSpreadSheet.BiDiMode Property
Specifies the control’s content bidirectional display mode.
Declaration
property BiDiMode: TBiDiMode read; write; default bdLeftToRight;
Property Value
Type | Default | Description |
---|---|---|
TBiDiMode | bdLeftToRight | The active bidirectional display mode. |
Remarks
Use the BiDiMode
property to switch between left-to-right and right-to-left display modes:
Value | Description | Example |
---|---|---|
bdLeftToRight |
Enables LTR mode. | |
bdRightToLeft |
Enables RTL mode. | |
bdRightToLeftNoAlign |
This value is reserved. | – |
bdRightToLeftReadingOnly |
This value is reserved. | – |
Note
The BiDiMode
property value affects only those worksheets whose Options.RightToLeftLayout property is set to bDefault.
Default Value
The BiDiMode
property’s default value is bdLeftToRight
.
See Also