Version

ResumeLayout(Boolean) Method

Resumes processing the positioning of the controls managed by the component.
Syntax
'Declaration
 
Public Overloads Sub ResumeLayout( _
   ByVal processingPendingLayout As Boolean _
) 
public void ResumeLayout( 
   bool processingPendingLayout
)

Parameters

processingPendingLayout
True if the layout has been dirtied since the layout was suspended and the layout should be updated now. If false is returned and a pending layout was required, no layout will be performed.
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.

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