Description

The user has double clicked within the viewer client window.

Syntax

Private Sub object_DblClick(Window, lMouseButton, lShift, lMouseX, lMouseY, bHandled)

The DblClick Event syntax has these parts:

PartDescription
objectA McWindow 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

The viewer does nothing with this event.