Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

HitTestResult.VisualHit Property

Definition

Namespace:
System.Windows.Media
Assembly:
PresentationCore.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets the visual object that was hit.

public:
 property System::Windows::DependencyObject ^ VisualHit { System::Windows::DependencyObject ^ get(); };
public System.Windows.DependencyObject VisualHit { get; }
member this.VisualHit : System.Windows.DependencyObject
Public ReadOnly Property VisualHit As DependencyObject

Property Value

A DependencyObject value that represents the visual object that was hit.

Examples

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;
}
' Return the result of the hit test to the callback.
Public Function MyHitTestResult(ByVal result As HitTestResult) As HitTestResultBehavior
 ' 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
End Function

Remarks

DependencyObject is the type rather than Visual so that hit testing can bridge 2D and 3D trees through a viewport.

Applies to


Feedback

Was this page helpful?