TypeConverter.SimplePropertyDescriptor.ResetValue(Object) Method

Definition

Resets the value for this property of the component.

public:
 override void ResetValue(System::Object ^ component);
public override void ResetValue (object component);
override this.ResetValue : obj -> unit
Public Overrides Sub ResetValue (component As Object)

Parameters

component
Object

The component with the property value to be reset.

Remarks

This method looks for a DefaultValueAttribute. If it finds one, it sets the value of the property to the value specified in the attribute. If this method cannot find a DefaultValueAttribute, it looks for a ResetMyProperty method. If it finds a ResetMyProperty method, it invokes it. If this method cannot find a DefaultValueAttribute or a ResetMyProperty method, then it does not perform an operation.

Applies to

See also