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 (String)

Finds all properties in the class with the specified name.

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

Parameters

name
The name of the property to search for.

Return Value

An array of type ICodeProperty representing the properties in the class matching the specified name. 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