AD
Administrator
Syncfusion Team
July 4, 2006 03:22 PM UTC
Hi Shashi,
You can set the ListBoxSelectionMode property of the grid control to SelectionMode.MultiSimple/ SelectionMode.MultiExtended. Here is a code snippet.
// Multiple item can be selected
this.gridControl1.ListBoxSelectionMode = SelectionMode.MultiSimple;
//Multiple item can be selected , and the user can use the SHIFT ,CRTL, and arrow key to make the selection
this.gridControl1.ListBoxSelectionMode = SelectionMode.MultiExtended;
Let me know if this helps.
Best Regards,
Haneef