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

Adds an event handler for the mouseDown event. The mouseDown event occurs when the user presses the mouseDown over this control.

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

Parameters

handler
New handler to install for this event.

See Also

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