AD
Administrator
Syncfusion Team
March 23, 2007 04:30 PM UTC
Hi Andy,
Try handling the Grid.CellDoubleClick event to achieve this.
private void Grid_CellDoubleClick(object sender, GridCellClickEventArgs e)
{
GridControlBase grid = sender as GridControlBase;
if( grid.Model[e.RowIndex,e.ColIndex].CellType == "Header") //It cancels the double click on the column header.
{e.Cancel = true;}
// To get MousePoints using e.MouseEventArgs
}
Best regards,
Haneef
AD
Administrator
Syncfusion Team
March 26, 2007 01:27 AM UTC
That did the trick. Thanks.