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

Adds an event handler for the lostFocus event. The lostFocus event occurs when this control looses focus.

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

Parameters

handler
New handler to install for this event.

See Also

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