VisibleRemoteObject.OnKeyRelease


public event OnKeyRelease

Prototype:

OnKeyRelease(Sender, EventData)

Parameters

Sender
the event firing control
EventData
contains a string, encapsulating the value of the key pressed, the state of the modifiers keys (Alt, Ctrl, Shift, etc) and the hardware key code, all of these separated by ":"

Description:

This event is fired whenever the user releases a key.
EventData can be evaluated like this :

    EventData=StrNumberSplit(EventData,":");
    keyvalue=EventData[0];
    state=EventData[1];
    hardware_keycode=EventData[2];

Return value:

This event can close the application by returning MSG_APPLICATION_QUIT. Any other return value will be ignored.