LayoutEventArgs Constructors

Definition

Initializes a new instance of the LayoutEventArgs class.

Overloads

LayoutEventArgs(IComponent, String)

Initializes a new instance of the LayoutEventArgs class with the specified component and property affected.

LayoutEventArgs(Control, String)

Initializes a new instance of the LayoutEventArgs class with the specified control and property affected.

LayoutEventArgs(IComponent, String)

Initializes a new instance of the LayoutEventArgs class with the specified component and property affected.

public:
 LayoutEventArgs(System::ComponentModel::IComponent ^ affectedComponent, System::String ^ affectedProperty);
public LayoutEventArgs (System.ComponentModel.IComponent affectedComponent, string affectedProperty);
public LayoutEventArgs (System.ComponentModel.IComponent? affectedComponent, string? affectedProperty);
new System.Windows.Forms.LayoutEventArgs : System.ComponentModel.IComponent * string -> System.Windows.Forms.LayoutEventArgs
Public Sub New (affectedComponent As IComponent, affectedProperty As String)

Parameters

affectedComponent
IComponent

The Component affected by the layout change.

affectedProperty
String

The property affected by the layout change.

See also

Applies to

LayoutEventArgs(Control, String)

Initializes a new instance of the LayoutEventArgs class with the specified control and property affected.

public:
 LayoutEventArgs(System::Windows::Forms::Control ^ affectedControl, System::String ^ affectedProperty);
public LayoutEventArgs (System.Windows.Forms.Control affectedControl, string affectedProperty);
public LayoutEventArgs (System.Windows.Forms.Control? affectedControl, string? affectedProperty);
new System.Windows.Forms.LayoutEventArgs : System.Windows.Forms.Control * string -> System.Windows.Forms.LayoutEventArgs
Public Sub New (affectedControl As Control, affectedProperty As String)

Parameters

affectedControl
Control

The Control affected by the layout change.

affectedProperty
String

The property affected by the layout change.

Applies to