Raised when the user releases a key.
SyntaxVB6
Copy Code
|
|---|
Public Event KeyUp |
Event DataParameter | Type | Description |
|---|---|---|
keyCode | [input] long | The virtual key code. |
shift | [input] long | The state of the modifier keys - SHIFT, CTRL, ALT. |
Dispatch ID: 67
RemarksRaised when the user releases a key. The event corresponds to the WM_KEYUP windows message, and is actually triggered by it. The second parameter is a bit-mask exposing the state of SHIFT, CTRL and ALT keys, through the first, second and third bit respectively.
See Also