We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

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.
Live Chat Icon For mobile
Up arrow icon