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!

InheritedPropertyDescriptor.SetValue

This will set value to be the new value of this property on the component by invoking the setXXX method on the component. If the value specified is invalid, the component should throw an exception which will be passed up. The component designer should design the property so that getXXX following a setXXX should return the value passed in if no exception was thrown in the setXXX call.

[Visual Basic]
Overrides Public Sub SetValue( _
   ByVal component As Object, _
   ByVal value As Object _
)
[C#]
public override void SetValue(
   object component,
   object value
);
[C++]
public: override void SetValue(
   Object* component,
   Object* value
);
[JScript]
public override function SetValue(
   component : Object,
   value : Object
);

Parameters

component
The component to set the property's value on.
value
The new value for the property on the component.

See Also

InheritedPropertyDescriptor Class | InheritedPropertyDescriptor Members | System.ComponentModel.Design Namespace | PropertyDescriptor