Concept Framework 2.0 documentation Contents | Index

VisibleRemoteObject.OnKeyRelease

Name Type Access Version Deprecated
OnKeyRelease event public version 1.0 no

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];

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

Documented by Eduard Suica, generation time: Fri Jan 21 18:06:08 2011 GMT(c)2011 RadGs Software