GeometryHitTestResult.IntersectionDetail Property
Gets the IntersectionDetail value of the hit test.
Assembly: PresentationCore (in PresentationCore.dll)
Property Value
Type: System.Windows.Media.IntersectionDetailThe IntersectionDetail value of the hit test.
The IntersectionDetail property describes the intersection between a Geometry and the target visual object.
The following illustration shows the relationship between the hit test geometry (the blue circle) and the target object (the red square).
The intersection between a hit test geometry and a target object
The following example shows how to use the IntersectionDetail property of GeometryHitTestResult.
// Return the result of the hit test to the callback. public HitTestResultBehavior MyHitTestResultCallback(HitTestResult result) { // Retrieve the results of the hit test. IntersectionDetail intersectionDetail = ((GeometryHitTestResult)result).IntersectionDetail; switch (intersectionDetail) { case IntersectionDetail.FullyContains: // Add the hit test result to the list that will be processed after the enumeration. hitResultsList.Add(result.VisualHit); return HitTestResultBehavior.Continue; case IntersectionDetail.Intersects: // Set the behavior to return visuals at all z-order levels. return HitTestResultBehavior.Continue; case IntersectionDetail.FullyInside: // Set the behavior to return visuals at all z-order levels. return HitTestResultBehavior.Continue; default: return HitTestResultBehavior.Stop; } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.