VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Annotation.UI.VisualTools Namespace / AnnotationVisualTool Class / IsPointOnInteractionArea(Int32,Int32,MouseButtons) Method
Syntax Requirements SeeAlso
In This Topic
    IsPointOnInteractionArea(Int32,Int32,MouseButtons) Method (AnnotationVisualTool)
    In This Topic
    Determines that the specified point is located on interaction area.
    Syntax
    'Declaration
    
    Public Function IsPointOnInteractionArea( _
    ByVal x
    The x coordinate, in viewer space.
    As System.Int32, _
    ByVal y
    The y coordinate, in viewer space.
    As System.Int32, _
    ByVal mouseButton
    The mouse button.
    As System.Windows.Forms.MouseButtons _
    ) As Boolean
    public bool IsPointOnInteractionArea(
    System.Int32 x,
    System.Int32 y,
    System.Windows.Forms.MouseButtons mouseButton
    )
    public: bool IsPointOnInteractionArea(
    System.Int32 x,
    System.Int32 y,
    System.Windows.Forms.MouseButtons* mouseButton
    )
    public:
    bool IsPointOnInteractionArea(
    System.Int32 x,
    System.Int32 y,
    System.Windows.Forms.MouseButtons^ mouseButton
    )

    Parameters

    x
    The x coordinate, in viewer space.
    y
    The y coordinate, in viewer space.
    mouseButton
    The mouse button.

    Return Value

    True if point is located on interaction area; otherwise, false.
    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