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!

IEditorSite.FindPropertyValue

Gets the value for the specified property. This method searches up the property outline chain looking for a property of the specified type.

[Visual Basic]
Function FindPropertyValue( _
   ByVal name As String, _
   ByVal type As Type _
) As Object
[C#]
object FindPropertyValue(
   string name,
   Type type
);
[C++]
Object* FindPropertyValue(
   String* name,
   Type* type
) = 0;
[JScript]
function FindPropertyValue(
   name : String,
   type : Type
) : Object;

Parameters

name
The name of the property.
type
The type of the property.

Return Value

The value of the property.

See Also

IEditorSite Interface | IEditorSite Members | System.ComponentModel.Design Namespace