Skip to main content
Version: 3.5

LayoutEventArgs

Namespace: Wisej.Web

Assembly: Wisej.Framework (3.5.0.0)

Provides data for the Layout event.

public class LayoutEventArgs : EventArgs

Constructors

Instance memberLayoutEventArgs(affectedComponent, affectedProperty)

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

NameTypeDescription
affectedComponentIComponentThe IComponent affected by the layout change.
affectedPropertyStringThe property affected by the layout change.

Instance memberLayoutEventArgs(affectedControl, affectedProperty)

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

NameTypeDescription
affectedControlControlThe Control affected by the layout change.
affectedPropertyStringThe property affected by the layout change.

Properties

Instance memberAffectedComponent

IComponent: Returns the IComponent affected by the layout change.

Instance memberAffectedControl

Control: Returns the child control affected by the change.

Instance memberAffectedProperty

String: Returns the property affected by the change.

Used By

NameDescription
LayoutEventHandlerRepresents the method that will handle the Layout event of a Control.