AD
Administrator
Syncfusion Team
October 24, 2003 09:57 PM UTC
You can get the row where the mouse is at any time using code like:
int row;
int col;
Point pt = this.grid.PointToClient(Control.MousePosition);
if(this.grid.PointToRowCol(pt, out row, out col, -1)
{
//row and col will have the cell where the mouse is...
}
So, in the drop event, you can get the row using the above code.