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

Adds an event handler for the resize event. The resize event occurs when the bounds of the control change. This event may be fired from the constructor of base controls.

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

Parameters

handler
New handler to install for this event.

See Also

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