Search
Component.HitTest Method
See Also
 






Returns the component containing specified point.

Namespace: MindFusion.Charting.Components
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public virtual Component HitTest (
    double x,
    double y
)

Visual Basic  Copy Code

Public Overridable Function HitTest( _
    x As Double, _
    y As Double _
) As Component

 Parameters

x

X coordinate of the point to test.

y

Y coordinate of the point to test.

 Return Value

A Component instance if one contains the point, or null otherwise.

 See Also