HitTestResult.VisualHit Property
.NET Framework 4.5
Gets the visual object that was hit.
Namespace: System.Windows.Media
Assembly: PresentationCore (in PresentationCore.dll)
Property Value
Type: System.Windows.DependencyObjectA DependencyObject value that represents the visual object that was hit.
DependencyObject is the type rather than Visual so that hit testing can bridge 2D and 3D trees through a viewport.
The following example shows how to retrieve the VisualHit property value in a hit test callback method.
// Return the result of the hit test to the callback. public HitTestResultBehavior MyHitTestResult(HitTestResult result) { // Add the hit test result to the list that will be processed after the enumeration. hitResultsList.Add(result.VisualHit); // Set the behavior to return visuals at all z-order levels. return HitTestResultBehavior.Continue; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.