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.ResetValue

Will reset the default value for this property on the component. If there was a default value passed in as a DefaultValueAttribute, that value will be set as the value of the property on the component. If there was no default value passed in, a ResetXXX method will be looked for. If one is found, it will be invoked. If one is not found, this is a nop.

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

Parameters

component
The component who's property's value should be reset.

See Also

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