TreeView for WinForms | ComponentOne
C1.Framework.Accessibility Namespace / ElementAccessibleObject Class / HitTest Method
The horizontal screen coordinate.
The vertical screen coordinate.

In This Topic
    HitTest Method (ElementAccessibleObject)
    In This Topic
    Retrieves the child object at the specified screen coordinates.
    Syntax
    'Declaration
     
    
    Public Overrides Function HitTest( _
       ByVal x As Integer, _
       ByVal y As Integer _
    ) As AccessibleObject
    public override AccessibleObject HitTest( 
       int x,
       int y
    )

    Parameters

    x
    The horizontal screen coordinate.
    y
    The vertical screen coordinate.

    Return Value

    An System.Windows.Forms.AccessibleObject that represents the child object at the given screen coordinates. This method returns the calling object if the object itself is at the location specified. Returns a null reference (Nothing in Visual Basic) if no object is at the tested location.
    Exceptions
    ExceptionDescription
    The control cannot be hit tested.
    See Also