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!

ICodeClass.FindProperties (ICodeClass)

Finds all properties in the class with the specified type.

[Visual Basic]
Overloads Function FindProperties( _
   ByVal type As ICodeClass _
) As ICodeProperty ()
[C#]
ICodeProperty[] FindProperties(
   ICodeClass type
);
[C++]
ICodeProperty* FindProperties(
   ICodeClass* type
) [] = 0;
[JScript]
function FindProperties(
   type : ICodeClass
) : ICodeProperty[];

Parameters

type
An ICodeClass representing the data type of the property to search for.

Return Value

An array of type ICodeProperty representing the properties in the class matching the specified type. If no matching property is found, a null reference (in Visual Basic Nothing) is returned.

See Also

ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace | ICodeClass.FindProperties Overload List