Version

ResumeLayout() Method

Resumes processing the positioning of the controls managed by the component.
Syntax
'Declaration
 
Public Overloads Sub ResumeLayout() 
public void ResumeLayout()
Remarks

The ResumeLayout method is used after invoking the SuspendLayout method so that the component knows that it may begin arranging the controls in its associated ContainerControl. This method invokeds the ResumeLayout(Boolean) overload passing in true so that it will arrange the controls if any layout events were invoked since SuspendLayout was invoked.

ResumeLayout must be called for each time that SuspendLayout is invoked.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also