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

Retrieves the current value of the property on component, invoking the getXXX method. An exception in the getXXX method will pass through.

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

Parameters

component
The component who's property's value will be retrieved.

Return Value

the value of the property for the given component.

See Also

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