HA
haneefm
Syncfusion Team
June 5, 2007 03:32 PM UTC
Hi Ali,
You can try these code:
void gridControl1_MouseClick(object sender, MouseEventArgs e)
{
GridControl _grid = sender as GridControl;
int _irowIndex, _icolIndex;
bool _bisInsideGrid = _grid.PointToRowCol(e.Location, out _irowIndex, out _icolIndex);
if (_bisInsideGrid)
{
Console.WriteLine(" CellType =>" + _grid.Model[ _irowIndex , _icolIndex ].CellType );
}
}
Best regards,
Haneef