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

[To be supplied.]

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

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

Parameters

sender
The source of the event.
e
A ComponentChangedEventArgs that contains the event data. The following ComponentChangedEventArgs properties provide information specific to this event.
Property Description
Component
Gets or sets the component that is the cause of this event.
Member
Gets or sets the member that is about to change.
NewValue
Gets or sets the new value of the changed member.
OldValue
Gets or sets the old value of the changed member.

Remarks

This event occurs when any component on the form changes. It will not occur during form load and unload, because changes are expected at this time.

See Also

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