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

Adds an event handler for the mouseLeave event. The mouseLeave event occurs when the mouse first moves out of this control.

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

Parameters

handler
New handler to install for this event.

See Also

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