This method is called when a key is released, when this tool is active.
Syntax
Visual Basic (Usage) | Copy Code |
---|
Dim instance As BaseTool
Dim keyCode As Integer
Dim Shift As Integer
instance.OnKeyUp(keyCode, Shift) |
Parameters
- keyCode
- Specifies a virtual key code value of the key released on the keyboard. For alpha-numeric keys this corresponds to the ASCII value, for example "A" key returns 65 which is the ASCII value for capital A. Other key codes are F1 to F12 are 112 to 123 respectively.
- Shift
- Specifies an integer corresponding to the state of the SHIFT (bit 0), CTRL (bit 1) and ALT (bit 2) keys. When none, some or all of these keys are pressed none, some or all the bits get set. These bits correspond to the values 1, 2, and 4, respectively. For example, if both SHIFT and ALT were pressed, Shift would be 5.
Remarks
Requirements
Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family
See Also