ITool.OnKeyUp Method
Called when a key is released.
Thread safety: This method does not have to be thread-safe, it will only be called by Carmenta Engine from the GUI thread.
OnKeyUp(System.Int32 key, System.Boolean shift, System.Boolean ctrl, System.Boolean alt)
Called when a key is released.Syntax
public System.Boolean OnKeyUp (
System.Int32 key,
System.Boolean shift,
System.Boolean ctrl,
System.Boolean alt
)
Parameters
key
Type: System.Int32
The key code of the key that was released.
The key code of the key that was released.
shift
Type: System.Boolean
True if the SHIFT key was pressed.
True if the SHIFT key was pressed.
ctrl
Type: System.Boolean
True if the CTRL key was pressed.
True if the CTRL key was pressed.
alt
Type: System.Boolean
True if the ALT key was pressed.
True if the ALT key was pressed.
Return Value
Type: System.Boolean
True if the tool handles the event; False otherwise.
True if the tool handles the event; False otherwise.
Platforms
Windows, Linux, Android