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

Adds an event handler for the move event. The move event occurs when the controls location changes.

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

Parameters

handler
New handler to install for this event.

See Also

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