_IMcViewEvents_KeyUpEventHandler Delegate
|
|
The user has pressed and released a keyboard key.
Namespace:
MediaCy.IQL.Display.Viewer
Assembly:
MediaCy.IQL.Display.Viewer (in MediaCy.IQL.Display.Viewer.dll) Version: 10.0.6912.0
SyntaxPublic Delegate Sub _IMcViewEvents_KeyUpEventHandler (
lKeyCode As Integer,
lKeyData As Integer,
<OutAttribute> ByRef bHandled As Boolean
)
Parameters
- lKeyCode
- Type: SystemInt32
long : virtual-key code of the pressed key - lKeyData
- Type: SystemInt32
long : contains repeat count, shift key, etc. Refer to
Windows SDK documentation on WM_KEYUP. - 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.
RemarksThe viewer does nothing with this event.
See Also