NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Control Layout Event

[To be supplied.]

The following declaration shows the syntax for a method that handles the Layout event.

[Visual Basic]
Private Sub ControlName_Layout( _
   ByVal sender As Object, _
   ByVal e As LayoutEventArgs _
)
[C#]
private void ControlName_Layout(
   object sender,
   LayoutEventArgs e
);
[C++]
private: void ControlName_Layout(
   Object* sender,
   LayoutEventArgs* e
);
[JScript]
private ControlName_Layout(
   sender : Object,
   e : LayoutEventArgs
);

Parameters

sender
The source of the event.
e
A LayoutEventArgs that contains the event data. The following LayoutEventArgs properties provide information specific to this event.
Property Description
AffectedControl
[To be supplied.]
AffectedProperty
[To be supplied.]

See Also

Control Class | Control MembersTopic | System.WinForms Namespace