A OnKeyUp function that can be overridden when inheriting from the control.

OnKeyUp(
keyCode
as UInt16,
characters
as string,
charactersIgnoringModifiers
as string,
modifierFlags
as KeyModifierFlags)
as bool
Parameters
- keyCode
- key code.
- characters
- Characters representing the pressed key as string.
- charactersIgnoringModifiers
- Characters representing the pressed key when ignoring all modifiers.
- modifierFlags
- Modifier flags.
Returns
- bool
- Return true to cancel internal functionality, else false.
Remarks
The normal event will not be called unless inheriting function calls the base function.
See Also
TextField Control