VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Wpf.UI.Annotations Namespace / WpfPdfAnnotationTool Class / FindAnnotationView Methods / FindAnnotationView(Point,Boolean) Method
Syntax Requirements SeeAlso
In This Topic
    FindAnnotationView(Point,Boolean) Method (WpfPdfAnnotationTool)
    In This Topic
    Finds an annotation view at specified point, in the image viewer space.
    Syntax
    'Declaration
    
    Public Overloads Function FindAnnotationView( _
    ByVal p
    The point, in the image viewer space.
    As System.Windows.Point, _
    ByVal ignoreInteractionMode
    A value indicating whether current interaction mode is ignored. If true, current InteractionMode is ignored and search is performed for each annotation; otherwise, result depends from GetAnnotationVisibility(WpfPdfAnnotationView) and CanInteractWith(WpfPdfAnnotationView) methods.
    As Boolean _
    ) As WpfPdfAnnotationView
    public WpfPdfAnnotationView FindAnnotationView(
    System.Windows.Point p,
    bool ignoreInteractionMode
    )
    public: WpfPdfAnnotationView* FindAnnotationView(
    System.Windows.Point p,
    bool ignoreInteractionMode
    )
    public:
    WpfPdfAnnotationView^ FindAnnotationView(
    System.Windows.Point p,
    bool ignoreInteractionMode
    )

    Parameters

    p
    The point, in the image viewer space.
    ignoreInteractionMode
    A value indicating whether current interaction mode is ignored. If true, current InteractionMode is ignored and search is performed for each annotation; otherwise, result depends from GetAnnotationVisibility(WpfPdfAnnotationView) and CanInteractWith(WpfPdfAnnotationView) methods.

    Return Value

    An annotation view if view is found; otherwise, null.
    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also