This is not fully supported. Our grid can mimic some of these requirements, but not all. Our grid supports the RightToLeft in the DataCell itself, but not through the whole grid. For example, the index of the column cannot start from the right. It would also be complicated to change the TitleFormat of the GroupManagerRow to make it start from the right.
At the DataCell level, you can use a WinTextBox editor, set its RightToLeft property, and use it as a CellEditorManager and CellViewerManager.
e.g.:
WinTextBox textbox = new WinTextBox();
textbox.RightToLeft = RightToLeft.Yes;
gridControl1.Columns[ 0 ].CellEditorManager = new TextEditor( textbox );
gridControl1.Columns[ 0 ].CellViewerManager = new TextViewer( textbox );
Imported from legacy forums. Posted by André (had 2054 views)