GridViewIHandlerGetCellAt Method |
Gets the node at a specified point from the origin of the control
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax Object GetCellAt(
PointF location,
out int column,
out int row
)
Function GetCellAt (
location As PointF,
<OutAttribute> ByRef column As Integer,
<OutAttribute> ByRef row As Integer
) As Object
abstract GetCellAt :
location : PointF *
column : int byref *
row : int byref -> Object
Parameters
- location
- Type: Eto.DrawingPointF
Point to find the node - column
- Type: SystemInt32
Column under the specified location - row
- Type: SystemInt32
Row under the specified location
Return Value
Type:
ObjectThe item from the data store that is displayed at the specified location
Remarks
Useful for determining which node is under the mouse cursor.
See Also