ST
stanleyj
Syncfusion Team
November 3, 2005 06:21 AM UTC
Hi Adit,
Try CellClik handler.
private void gridDataBoundGrid1_CellClick(object sender, Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs e)
{
if(e.RowIndex == 0 && e.ColIndex == 1)
Console.WriteLine("Clicked at {0},{1}",e.RowIndex , e.ColIndex );
}
Best regards,
Stanley