You can use the default TextEditor, which uses the WinTextBox underneath.
[C#]
gridControl1.Columns[ 0 ].CellEditorManager = new TextEditor( “>&&&&” );
You can also assign the viewer in the same way :
gridControl1.Columns[ 0 ].CellViewerManager = new TextViewer( “>&&&&” );
[VB.NET]
gridControl1.Columns( 0 ).CellEditorManager = new TextEditor( “>&&&&” )
You can also assign the viewer in the same way :
gridControl1.Columns( 0 ).CellViewerManager = new TextViewer( “>&&&&” )
Imported from legacy forums. Posted by Xceed admin (had 1475 views)