Visual::HitTestCore Method (GeometryHitTestParameters^)
Determines whether a geometry value is within the bounds of the visual object.
Assembly: PresentationCore (in PresentationCore.dll)
protected: virtual GeometryHitTestResult^ HitTestCore( GeometryHitTestParameters^ hitTestParameters )
Parameters
- hitTestParameters
-
Type:
System.Windows.Media::GeometryHitTestParameters^
A GeometryHitTestParameters object that specifies the Geometry to hit test against.
Return Value
Type: System.Windows.Media::GeometryHitTestResult^A GeometryHitTestResult that represents the result of the hit test.
You can override default hit testing support for a visual object by overriding the HitTestCore method. This means that when you invoke the HitTest method, your overridden implementation of HitTestCore is called. Your overridden method is called when a hit test falls within the bounding rectangle of the visual object, even if the coordinate falls outside the geometry of the visual object.
The following example shows how to override the HitTestCore(GeometryHitTestParameters^) method. One reason you might want to override this method is to provide additional functionality during the hit testing process.
Available since 3.0