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:

PartDescription
objectA McWindows object.
WindowA McWindow object.
lMouseButtonA Long value.

left, right, middle

lShiftA Long value.

esc, shift, etc.

lMouseXA Long value.

mouse X position in client coordinates

lMouseYA Long value.

mouse Y position in client coordinates

bHandledA 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.