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:
|
| object | A McWindow 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
The viewer does nothing with this event.
|