HitTest(Int32,Int32) Method
In This Topic
Returns information about the control at a specified point on the control surface.
Syntax
'Declaration
Public Overloads Function HitTest( _
ByVal As Integer, _
ByVal As Integer _
) As HitTestInfo
public HitTestInfo HitTest(
int ,
int
)
Parameters
- x
- The horizontal position of the client coordinate.
- y
- The vertical position of the client coordinate.
Return Value
A
C1.Win.C1FlexGrid.HitTestInfo object that contains information about the point.
Example
The code below shows hit test information whenever the user clicks the mouse:
See Also