HI_UnRegKeyHandler

HI_UnRegKeyHandler

%HI_UnRegKeyHandler function


Function

Control function for unregistering keyboard shortcuts generating the OnKeyDown event.

Declaration

%HI_UnRegKeyHandler( IN INT _VKCode, IN BOOL _bCtrl, IN BOOL _bShift, IN BOOL _bAlt)

Parameters

_VKCode

Code of the pressed key.

_bCtrl

Attribute of the CTRL key state when the key _VKCode is pressed.

_bShift

Attribute of the SHIFT key state when the key _VKCode is pressed.

_bAlt

Attribute of the ALT key state when the key _VKCode is pressed.

Description

The control function unregisters a keyboard shortcut, the pressing of which generates an OnKeyDown event.

Example

; Remove the shortcut ALT + a %HI_UnRegKeyHandler(61,@FALSE,@FALSE,@TRUE)