ContainerControl.PerformAutoScale Method

Definition

Performs scaling of the container control and its children.

public:
 void PerformAutoScale();
public void PerformAutoScale ();
member this.PerformAutoScale : unit -> unit
Public Sub PerformAutoScale ()

Remarks

An explicit call to the PerformAutoScale method is typically only required after programmatic changes to the layout during run time. PerformAutoScale is implicitly called from the OnLayout method.

PerformAutoScale is recursive; each child control, if it is a container, will have its version of this method called when the container's version executes.

For more information about automatic scaling, see Automatic Scaling in Windows Forms.

Applies to

See also