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 ControlRemoved Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A ControlEventArgs that contains the event data. The following ControlEventArgs properties provide information specific to this event.
Property Description
Control
Retrieves the control object stored in this event.

See Also

Control Class | Control MembersTopic | System.WinForms Namespace