Home › Forums › WinForms controls › Xceed Grid for WinForms › Hide datagrid row selector
Hello, How do I hide the rowselector on a grid? By row selector, I mean the that grey column on the left hand side, wherethe arrow appears when you click into a row.
you can see what I say here:
http://tinypic.com/esrt5v.jpg
Thanks
Imported from legacy forums. Posted by Francisco (had 1554 views)
Hi Fransisco,
The GridControl has a control called RowSelectorPane that you can access the Visible property from. For example:
this.starterGrid.RowSelectorPane.Visible = false;
This should do the trick for you!
Imported from legacy forums. Posted by Marc [Xceed] (had 877 views)