Table of Contents

Method ResumeLayout

Namespace
Alternet.UI
Assembly
Alternet.UI.Common.dll

ResumeLayout(bool)

Resumes the usual layout logic.

void ResumeLayout(bool performLayout = true)

Parameters

performLayout bool

true to execute pending layout requests; otherwise, false.

Remarks

Resumes the usual layout logic after SuspendLayout() has been called. When the performLayout parameter is set to true, an immediate layout occurs.

The SuspendLayout() and ResumeLayout(bool) methods are used in tandem to suppress multiple layouts while you adjust multiple attributes of the control. For example, you would typically call the SuspendLayout() method, then set some properties of the control, or add child controls to it, and then call the ResumeLayout(bool) method to enable the changes to take effect.