Description
The user has pressed and released a keyboard key.
Syntax
Private Sub object_KeyUp(lKeyCode, lKeyData, bHandled)
The KeyUp Event syntax has these parts:
|
| object | A McDisplay object. | | lKeyCode | A Long value. long : virtual-key code of the pressed key
| | lKeyData | A Long value. long : contains repeat count, shift key, etc. Refer to Windows SDK documentation on WM_KEYUP.
| | bHandled | A Boolean value. 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
The viewer does nothing with this event.
|