When overridden in a derived class, gets the current value of the property on a component.

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

Syntax

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

Parameters

component
Type: System..::..Object
The component with the property for which to retrieve the value.

Return Value

Type: Object
The value of a property for a given component.

See Also