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!

ComponentDesigner.RaiseComponentChanged

Notifies the IComponentChangeService that this component has been changed. You only need to call this when you are affecting component properties directly and not through the MemberDescriptor's accessors.

[Visual Basic]
Protected Sub RaiseComponentChanged( _
   ByVal member As MemberDescriptor, _
   ByVal oldValue As Object, _
   ByVal newValue As Object _
)
[C#]
protected void RaiseComponentChanged(
   MemberDescriptor member,
   object oldValue,
   object newValue
);
[C++]
protected: void RaiseComponentChanged(
   MemberDescriptor* member,
   Object* oldValue,
   Object* newValue
);
[JScript]
protected function RaiseComponentChanged(
   member : MemberDescriptor,
   oldValue : Object,
   newValue : Object
);

Parameters

member
[To be supplied.]
oldValue
[To be supplied.]
newValue
[To be supplied.]

See Also

ComponentDesigner Class | ComponentDesigner Members | System.ComponentModel.Design Namespace