AD
Administrator
Syncfusion Team
March 25, 2004 10:20 PM UTC
In CurrentCellChanged, you can get the row and column from the currentcell itself.
private void gridControl1_CurrentCellChanged(object sender, System.EventArgs e)
{
GridCurrentCell cc = this.gridControl1.CurrentCell;
Console.WriteLine("change in ({0},{1})", cc.RowIndex, cc.ColIndex);
}