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.OnKeyDown

Inheriting classes should override this method to handle this event. Call base.onKeyDown to send this event to any registered event listeners.

[Visual Basic]
Overridable Protected Sub OnKeyDown( _
   ByVal e As KeyEventArgs _
)
[C#]
protected virtual void OnKeyDown(
   KeyEventArgs e
);
[C++]
protected: virtual void OnKeyDown(
   KeyEventArgs* e
);
[JScript]
protected function OnKeyDown(
   e : KeyEventArgs
);

Parameters

e
event

See Also

Control Class | Control Members | System.WinForms Namespace | AddOnKeyDown | RemoveOnKeyDown