Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

%HI_UnRegKeyHandler

function


Function
Control function for unregistering keyboard shortcuts generating the OnKeyDown event.
Declaration


Blok kódu
languageesl
themeConfluence
%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


Blok kódu
languageesl
themeRDark
 ; Remove the shortcut ALT + a
 %HI_UnRegKeyHandler(61,@FALSE,@FALSE,@TRUE)