NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Control.AddOnKeyUp

Adds an event handler for the keyUp event. The keyUp event occurs when the user releases a key.

[Visual Basic]
Overridable Public Sub AddOnKeyUp( _
   ByVal handler As KeyEventHandler _
)
[C#]
public virtual void AddOnKeyUp(
   KeyEventHandler handler
);
[C++]
public: virtual void AddOnKeyUp(
   KeyEventHandler* handler
);
[JScript]
public function AddOnKeyUp(
   handler : KeyEventHandler
);

Parameters

handler
New handler to install for this event.

See Also

Control Class | Control Members | System.WinForms Namespace | RemoveOnKeyUp