Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 654 Bytes

FlowLauncherGlobalKeyboardEventHandler.md

File metadata and controls

25 lines (17 loc) · 654 Bytes

FlowLauncherGlobalKeyboardEventHandler delegate

Global keyboard events

public delegate bool FlowLauncherGlobalKeyboardEventHandler(int keyevent, int vkcode, 
    SpecialKeyState state);
parameter description
keyevent WM_KEYDOWN = 256,WM_KEYUP = 257,WM_SYSKEYUP = 261,WM_SYSKEYDOWN = 260
vkcode
state

Return Value

return true to continue handling, return false to intercept system handling

See Also