LayoutEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Provides data for the Layout event.
- C#
- VB.NET
public class LayoutEventArgs : EventArgs
Public Class LayoutEventArgs
Inherits EventArgs
Constructors
LayoutEventArgs(affectedComponent, affectedProperty)
Initializes a new instance of the LayoutEventArgs class with the specified component and property affected.
| Name | Type | Description |
|---|---|---|
| affectedComponent | IComponent | The IComponent affected by the layout change. |
| affectedProperty | String | The property affected by the layout change. |
LayoutEventArgs(affectedControl, affectedProperty)
Initializes a new instance of the LayoutEventArgs class with the specified control and property affected.
| Name | Type | Description |
|---|---|---|
| affectedControl | Control | The Control affected by the layout change. |
| affectedProperty | String | The property affected by the layout change. |
Properties
AffectedComponent
IComponent: Returns the IComponent affected by the layout change.
AffectedControl
Control: Returns the child control affected by the change.
AffectedProperty
String: Returns the property affected by the change.
Used By
| Name | Description |
|---|---|
| LayoutEventHandler | Represents the method that will handle the Layout event of a Control. |