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.