AD
Administrator
Syncfusion Team
August 13, 2003 12:24 PM UTC
Given a Point pt in grid coordinates, you can use PointToRowCol to get the row and col.
int rowIndex, colIndex;
this.gridDataBoundGrid1.PointToRowCol(pt, out rowIndex, out colIndex, -1);
'or in VB
Dim rowIndex, colIndex As Integer
Me.gridDataBoundGrid1.PointToRowCol(pt, rowIndex, colIndex, - 1)