OnMouseMove
EventOnMouseMove (Event)
Occurs when the user moves the mouse over AVAX
Syntax:
Private Sub object_OnMouseMove(Sender As System.Object, e As MouseMoveEventArgs)
The OnMouseMove event syntax has the following parts:
Argument |
Data Type |
Description |
Sender |
System.Object |
The object that raises the event |
e.Button |
Short |
Returns an integer that identifies the button that was pressed |
e.Shift |
Short |
Returns an integer that corresponds to the state of the SHIFT, CTRL, and ALT keys when the button specified in the button argument is pressed or released |
e.x |
Single |
A number that specifies the current x location of the mouse pointer |
e.y |
Single |
A number that specifies the current y location of the mouse pointer |