RibbonBase.ResumeLayout Method

Definition

Overloads

ResumeLayout()

Reverses the effect of the SuspendLayout() method.

ResumeLayout(Boolean)

Reverses the effect of the SuspendLayout() method.

ResumeLayout()

Reverses the effect of the SuspendLayout() method.

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

Remarks

Calling SuspendLayout may result in a slight performance increase if your application has many controls that are frequently updated.

After you change the state of each control, you can call ResumeLayout to allow the UI to be refreshed.

Applies to

ResumeLayout(Boolean)

Reverses the effect of the SuspendLayout() method.

public:
 void ResumeLayout(bool performLayout);
public void ResumeLayout (bool performLayout);
member this.ResumeLayout : bool -> unit
Public Sub ResumeLayout (performLayout As Boolean)

Parameters

performLayout
Boolean

true to call the PerformLayout() method. false to enable UI refreshes without calling PerformLayout().

Applies to