BindingMemberInfo Structure
Contains information that enables a Binding to resolve a data binding to either the property of an object or the property of the current object in a list of objects.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
| Name | Description | |
|---|---|---|
![]() | BindingMemberInfo(String^) | Initializes a new instance of the BindingMemberInfo class. |
| Name | Description | |
|---|---|---|
![]() | BindingField | Gets the property name of the data-bound object. |
![]() | BindingMember | Gets the information that is used to specify the property name of the data-bound object. |
![]() | BindingPath | Gets the property name, or the period-delimited hierarchy of property names, that comes before the property name of the data-bound object. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object^) | Determines whether the specified object is equal to this BindingMemberInfo.(Overrides ValueType::Equals(Object^).) |
![]() | GetHashCode() | Returns the hash code for this BindingMemberInfo.(Overrides ValueType::GetHashCode().) |
![]() | GetType() | |
![]() | ToString() | Returns the fully qualified type name of this instance.(Inherited from ValueType.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Equality(BindingMemberInfo, BindingMemberInfo) | Determines whether two BindingMemberInfo objects are equal. |
![]() ![]() | Inequality(BindingMemberInfo, BindingMemberInfo) | Determines whether two BindingMemberInfo objects are not equal. |
The BindingMemberInfo is returned by the BindingMemberInfo property of the Binding class.
The BindingMemberInfo is created from the string passed to the BindingMemberInfo constructor.
The following code example prints the BindingPath, BindingField, BindingMember for each control on a form.
private: void PrintBindingMemberInfo() { for each ( Control^ c in this->Controls ) { for each ( Binding^ b in c->DataBindings ) { Console::WriteLine( "\n {0}", c ); BindingMemberInfo bInfo = b->BindingMemberInfo; Console::WriteLine( "Binding Path \t {0}", bInfo.BindingPath ); Console::WriteLine( "Binding Field \t {0}", bInfo.BindingField ); Console::WriteLine( "Binding Member \t {0}", bInfo.BindingMember ); } } }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.



