ImageGear .NET v25.2 - Updated
ImageGear.Art.Windows.Controls Assembly / ImageGear.ART.Windows.Controls Namespace / Annotator Class / MouseLeftButtonUp Event




In This Topic
    MouseLeftButtonUp Event (Annotator)
    In This Topic
    Occurs when the left mouse button is released while the mouse pointer is over or outside of an annotation mark.
    Syntax
    'Declaration
     
    Public Event MouseLeftButtonUp As Annotator.ArtMouseButtonEventHandler
    'Usage
     
    Dim instance As Annotator
    Dim handler As Annotator.ArtMouseButtonEventHandler
     
    AddHandler instance.MouseLeftButtonUp, handler
    public event Annotator.ArtMouseButtonEventHandler MouseLeftButtonUp
    public: __event Annotator.ArtMouseButtonEventHandler* MouseLeftButtonUp
    public:
    event Annotator.ArtMouseButtonEventHandler^ MouseLeftButtonUp
    Event Data

    The event handler receives an argument of type ArtMouseButtonEventArgs containing data related to this event. The following ArtMouseButtonEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets mouse button event data.  
    Gets the annotation mark object the mouse pointer is over or null otherwise.  
    See Also