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

Adds an event handler for the mouseMove event. The mouseMove event occurs whenever the user moves the mouse over this control.

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

Parameters

handler
New handler to install for this event.

See Also

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