%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
_VKCodeCode of pressed key.
_bCtrlAttribute of the CTRL key state when the key _VKCode is pressed.
_bShiftAttribute of the SHIFT key state when the key _VKCode is pressed.
_bAltAttribute 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) 
 
 


Napíšte komentár