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!

LinkLabel.OnKeyDown

Raises the OnKeyDown event.

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

Parameters

e
A KeyEventArgs that contains the event data.

Remarks

Raising an event invokes the event-handling method through a delegate. For more information, see TBD.

Notes to Inheritors: When overriding OnKeyDown in a derived class, be sure to call the base class's OnKeyDown method.

See Also

LinkLabel Class | LinkLabel Members | System.WinForms Namespace | Control | OnKeyDown | KeyEventArgs | OnKeyDown