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