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 );
InheritedPropertyDescriptor Class | InheritedPropertyDescriptor Members | System.ComponentModel.Design Namespace | PropertyDescriptor