AD
Administrator
Syncfusion Team
March 30, 2004 12:53 PM UTC
If the row has a currentcell, you can use;
int rowIndex = grid.CurrentCell.RowIndex;
If not, then you can get the binder position, and then the row index from that;
int pos = this.grid.Binder.Position;
int rowIndex = this.grid.Binder.PositionToRowIndex(pos);