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




In This Topic
    MouseMove Event (Annotator)
    In This Topic
    Occurs when the coordinate position of the mouse (or stylus) changes while over or outside of zan annotation mark.
    Syntax
    'Declaration
     
    Public Event MouseMove As Annotator.ArtMouseEventHandler
    'Usage
     
    Dim instance As Annotator
    Dim handler As Annotator.ArtMouseEventHandler
     
    AddHandler instance.MouseMove, handler
    public event Annotator.ArtMouseEventHandler MouseMove
    public: __event Annotator.ArtMouseEventHandler* MouseMove
    public:
    event Annotator.ArtMouseEventHandler^ MouseMove
    Event Data

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

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