| File: System\Windows\Media\PointHitTestResult.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationCore\PresentationCore.csproj (PresentationCore) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // namespace System.Windows.Media { /// <summary> /// This class returns the point and visual hit during a hit test pass. /// </summary> public class PointHitTestResult : HitTestResult { private Point _pointHit; /// <summary> /// This constructor takes a visual and point respresenting a hit. /// </summary> public PointHitTestResult(Visual visualHit, Point pointHit) : base(visualHit) { _pointHit = pointHit; } /// <summary> /// The point in local space of the hit visual. /// </summary> public Point PointHit { get { return _pointHit; } } /// <summary> /// Re-expose Visual property strongly typed to 2D Visual. /// </summary> public new Visual VisualHit { get { return (Visual) base.VisualHit; } } } }