When overridden in a derived class, gets the current value of the property on a component.
[Visual Basic] MustOverride Public Function GetValue( _ ByVal component As Object _ ) As Object [C#] public abstract object GetValue( object component ); [C++] public: virtual Object* GetValue( Object* component ) = 0; [JScript] public abstract function GetValue( component : Object ) : Object;
The value of a property for a given component.
Typically, this method is implemented through reflection.
Notes to Inheritors: When you override this method, it should get the current value of the property by invoking the appropriate Get XXX method. An exception in the Get XXX method should pass through.
PropertyDescriptor Class | PropertyDescriptor Members | System.ComponentModel Namespace