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

Adds an event handler for the mouseHover event. The mouseHover event occurs after the mouse is inside a control for an amount.

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

Parameters

handler
New handler to install for this event.

See Also

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