Set selection mode for a row

Hi together, I have gridcontrol and I want to set for a special row that no cell in this row can''t be selected not even the whole row. How can this be done programmatically? Kind regards, Franz

1 Reply

AD Administrator Syncfusion Team September 14, 2005 02:18 PM UTC

Hi Franz, You can easily prevent a row from being selected using the SelectionChanging event, and cancelling it if the a particular row is in the selections. Below is a little snippet. But this will just stop the selection at that row. You would not be able to continue dragging and select other rows on the opposite side of the currently selected rows. private void gridControl1_SelectionChanging(object sender, Syncfusion.Windows.Forms.Grid.GridSelectionChangingEventArgs e) { // For row 3. if(e.Range.IntersectsWith(GridRangeInfo.Row(3))) e.Cancel = true; } Regards, Leo.

Loader.
Up arrow icon