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

Raises the System.WinForms.Control.LostFocus event.

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

Parameters

e
An EventArgs 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 OnLostFocus in a derived class, be sure to call the base class's OnLostFocus method.

See Also

LinkLabel Class | LinkLabel Members | System.WinForms Namespace | Control | EventArgs | System.WinForms.Control.LostFocus | OnLostFocus