Hello,
As I can do to select cells, rows and columns, in the same way as in excel. I've only managed to select cells or entire rows
I have not found an example of how to do it
Thanks
1 Answer, 1 is accepted
0
Ralitsa
Telerik team
answered on 25 Mar 2014, 09:19 AM
Hi Enrique,
Thank you for contact us.
1. RadGridView supports single and multiple selection. If you want to select more than one row/cell you need to set MultiSelect property to true:
radGridView1.MultiSelect = true;
2. You can set the SelectionMode property to FullRowSelect or CellSelect :
You can refer to QSF where you can find an example which demonstrates you the selection options. The location where you can find it is: START >> All Programs >> Telerik >> UI for WinForms [version] >> Examples >> C# for Visual Studio 2010 >> Open C# Demo Application in Visual Studio - UI for WinForms. The example for selection is in GridView >> Selection.