Occurs when a control should reposition its child controls.
Syntax
Visual Basic (Declaration) | |
---|
<SRDescriptionAttribute("Occurs when the control is about to lay out its contents.")>
<SRCategoryAttribute("Layout")>
Public Event Layout As LayoutEventHandler |
C# | |
---|
[SRDescriptionAttribute("Occurs when the control is about to lay out its contents.")]
[SRCategoryAttribute("Layout")]
public event LayoutEventHandler Layout |
C++/CLI | |
---|
[SRDescriptionAttribute("Occurs when the control is about to lay out its contents.")]
[SRCategoryAttribute("Layout")]
public:
event LayoutEventHandler^ Layout |
Event Data
The event handler receives an argument of type LayoutEventArgs containing data related to this event. The following LayoutEventArgs properties provide information specific to this event.
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also