When overridden in a derived class, returns whether resetting an object changes its value.

Namespace: MonoSoftware.MonoX
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public override bool CanResetValue(
	Object component
)
Visual Basic
Public Overrides Function CanResetValue ( 
	component As Object
) As Boolean
Visual C++
public:
virtual bool CanResetValue(
	Object^ component
) override
F#
abstract CanResetValue : 
        component : Object -> bool 
override CanResetValue : 
        component : Object -> bool 

Parameters

component
Type: System..::..Object
The component to test for reset capability.

Return Value

Type: Boolean
true if resetting the component changes its value; otherwise, false.

See Also