Enum TKFlags
Flags of hotkey triggers.
[Flags]
public enum TKFlags
Namespace: Au.Triggers
Assembly: Au.dll
Fields
Name | Description |
---|---|
ExtendedNo | The key must not be an "extended key". See KKeyScan example code. Don't use this flag with NumpadX flags. |
ExtendedYes | The key must be an "extended key". See KKeyScan example code. Don't use this flag with NumpadX flags. |
KeyModUp | Run the action when the key and modifier keys are released. |
LeftMod | The trigger works only with left-side modifier keys. |
NoModOff | Don't release modifier keys.
Without this flag, for example if trigger is noteUnreleased modifier keys will interfere with mouse functions like mouse.click. Will not interfere with keyboard and clipboard functions of this library, because they release modifier keys, unless opt.key.NoModOff is |
Numpad | The trigger works only with the key that is on the numeric keypad. This flag can be used with |
NumpadNot | The trigger works only with the key that is not on the numeric keypad. This flag can be used with |
RightMod | The trigger works only with right-side modifier keys. |
ShareEvent | Allow other apps to receive the key down message too.
Without this flag, other apps usually receive only modifier keys. Also, OS always receives |