_IMcViewEvents_MouseMoveEventHandler Delegate

The user is moving the mouse over the viewer client window

Namespace:  MediaCy.IQL.Display.Viewer
Assembly:  MediaCy.IQL.Display.Viewer (in MediaCy.IQL.Display.Viewer.dll) Version: 10.0.6912.0
Syntax
VB
Public Delegate Sub _IMcViewEvents_MouseMoveEventHandler ( 
	lMouseButton As Integer,
	lShift As Integer,
	lMouseX As Integer,
	lMouseY As Integer,
	<OutAttribute> ByRef bHandled As Boolean
)

Parameters

lMouseButton
Type: SystemInt32
long : left, right, middle
lShift
Type: SystemInt32
long : esc, shift, etc.
lMouseX
Type: SystemInt32
long : mouse X position in client coordinates
lMouseY
Type: SystemInt32
long : mouse Y position in client coordinates
bHandled
Type: SystemBoolean
VARIANT_BOOL * : 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 AutoScrollMethod 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.
See Also