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!

IComponentChangeService ComponentAdded Event

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A ComponentEventArgs that contains the event data. The following ComponentEventArgs properties provide information specific to this event.
Property Description
Component
Gets or sets the component associated with the event.

Remarks

This event occurs during load and when new components are created by the user, after the component has been sited.

See Also

IComponentChangeService Interface | IComponentChangeService MembersTopic | System.ComponentModel.Design Namespace