IKeyEventHandler.HandleKeyEvent (METH)ΒΆ
METHOD HandleKeyEvent : BOOL
This method will be called after a key event is released. RETURN: TRUE - When the handler has handled this event and it should not be handled by someone else FALSE - When the event is not handled by this handler
- InOut:
Scope
Name
Type
Comment
Return
HandleKeyEvent
BOOL
Input
bKeyUpEvent
BOOL
The event type. The value is true if a key up event was released.
dwKey
DWORD
The key code
dwModifiers
DWORD
The modifiers. Possible values are: VISU_KEYMOD_SHIFT : DWORD := 1; VISU_KEYMOD_ALT : DWORD := 2; VISU_KEYMOD_CTRL : DWORD := 4;
pClient
POINTER TO VisuStructClientData
A pointer to the client structure were tje event was released