ActionsPane.PerformLayout Method

Definition

Forces the actions pane to apply layout logic to child controls.

Overloads

PerformLayout()

Forces the actions pane to apply layout logic to all its child controls.

PerformLayout(Control, String)

Forces the actions pane to apply layout logic to all its child controls.

Remarks

This method provides the same functionality as the <xref:System.Windows.Forms.Control.PerfromLayout%2A?displayProperty=fullName> method. For more information about using this method, see <xref:System.Windows.Forms.Control.PerfromLayout%2A?displayProperty=fullName>.

PerformLayout()

Forces the actions pane to apply layout logic to all its child controls.

public:
 void PerformLayout();
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)]
public void PerformLayout ();
[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)>]
abstract member PerformLayout : unit -> unit
Public Sub PerformLayout ()
Attributes

Remarks

This method provides the same functionality as the System.Windows.Forms.Control.PerformLayout() method. For more information about using this method, see System.Windows.Forms.Control.PerformLayout().

Applies to

PerformLayout(Control, String)

Forces the actions pane to apply layout logic to all its child controls.

public:
 void PerformLayout(System::Windows::Forms::Control ^ affectedControl, System::String ^ affectedProperty);
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)]
public void PerformLayout (System.Windows.Forms.Control affectedControl, string affectedProperty);
[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)>]
abstract member PerformLayout : System.Windows.Forms.Control * string -> unit
Public Sub PerformLayout (affectedControl As Control, affectedProperty As String)

Parameters

affectedControl
Control

A Control that represents the most recently changed control.

affectedProperty
String

The name of the most recently changed property on the control.

Attributes

Remarks

This method provides the same functionality as the System.Windows.Forms.Control.PerformLayout(Control, String) method. For more information about using this method, see System.Windows.Forms.Control.PerformLayout(Control, String).

Applies to