Description
The user is moving the mouse over the viewer client window
Syntax
Private Sub object_MouseMove(Window, lMouseButton, lShift, lMouseX, lMouseY, bHandled)
The MouseMove Event syntax has these parts:
|
| object | A McWindows object. | | Window | A McWindow object. | | lMouseButton | A Long value. left, right, middle
| | lShift | A Long value. esc, shift, etc.
| | lMouseX | A Long value. mouse X position in client coordinates
| | lMouseY | A Long value. mouse Y position in client coordinates
| | bHandled | A Boolean value. Setting this parameter to true aborts the propagation of this event to other clients. The implication is that the client code that set this parameter has handled the event and no other clients should.
|
Remarks
If the EnableAutoScroll property is enabled, any mouse button is pressed, and the mouse is within AutoScrollThreshold screen pixels from the client window edge, then the viewer will autoscroll before forwarding this event to it's clients.
|