HA
haneefm
Syncfusion Team
June 6, 2007 05:41 PM UTC
Hi Vivek,
You can handle the SelectionChanging event and set the e.Cancel to tue to prevent the cells from selection in a grid. Below is a code snippet to show this.
private void gridControl1_SelectionChanging(object sender, GridSelectionChangingEventArgs e)
{
if( e.Range.IntersectsWith(GridRangeInfo.Cell(3,2)))
e.Cancel = true;
}
Best regards,
Haneef