ControlDesigner.OnControlResize Method

Definition

Caution

The recommended alternative is OnComponentChanged(). OnComponentChanged is called when any property of the control is changed. http://go.microsoft.com/fwlink/?linkid=14202

Called when the associated Web server control has been resized in the design host at design time.

protected:
 virtual void OnControlResize();
protected virtual void OnControlResize ();
[System.Obsolete("The recommended alternative is OnComponentChanged(). OnComponentChanged is called when any property of the control is changed. http://go.microsoft.com/fwlink/?linkid=14202")]
protected virtual void OnControlResize ();
abstract member OnControlResize : unit -> unit
override this.OnControlResize : unit -> unit
[<System.Obsolete("The recommended alternative is OnComponentChanged(). OnComponentChanged is called when any property of the control is changed. http://go.microsoft.com/fwlink/?linkid=14202")>]
abstract member OnControlResize : unit -> unit
override this.OnControlResize : unit -> unit
Protected Overridable Sub OnControlResize ()
Attributes

Remarks

Note

The OnControlResize method is obsolete. Use the OnComponentChanged method for equivalent control designer functionality.

The OnControlResize method typically is called only by the design-time environment when a user action causes the associated Web server control to be resized. The OnControlResize method might be called several times during a resizing process to display the updated size of the control before the resizing is completed. The width and height properties of the control are updated before the OnControlResize method is called.

Applies to

See also