Finds the property of the class that has the specified name, type, and modifiers.
[Visual Basic] Function FindProperty( _ ByVal name As String, _ ByVal type As ICodeClass, _ ByVal modifiers As Integer _ ) As ICodeProperty [C#] ICodeProperty FindProperty( string name, ICodeClass type, int modifiers ); [C++] ICodeProperty* FindProperty( String* name, ICodeClass* type, int modifiers ) = 0; [JScript] function FindProperty( name : String, type : ICodeClass, modifiers : int ) : ICodeProperty;
An ICodeProperty representing the property of the class matching the specified property attributes. If no matching property is found, a null reference (in Visual Basic Nothing) is returned.
ICodeClass Interface | ICodeClass Members | System.ComponentModel.Design.CodeModel Namespace