BindingMemberInfo Struct
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public value class BindingMemberInfo
public value class BindingMemberInfo : IEquatable<System::Windows::Forms::BindingMemberInfo>
public struct BindingMemberInfo
public struct BindingMemberInfo : IEquatable<System.Windows.Forms.BindingMemberInfo>
public readonly struct BindingMemberInfo : IEquatable<System.Windows.Forms.BindingMemberInfo>
type BindingMemberInfo = struct
Public Structure BindingMemberInfo
Public Structure BindingMemberInfo
Implements IEquatable(Of BindingMemberInfo)
- Inheritance
- Implements
Examples
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 );
}
}
}
private void PrintBindingMemberInfo()
{
foreach(Control c in this.Controls)
{
foreach(Binding b in c.DataBindings)
{
Console.WriteLine("\n" + c.ToString());
BindingMemberInfo bInfo = b.BindingMemberInfo;
Console.WriteLine("Binding Path \t" + bInfo.BindingPath);
Console.WriteLine("Binding Field \t" + bInfo.BindingField);
Console.WriteLine("Binding Member \t" + bInfo.BindingMember);
}
}
}
Private Sub PrintBindingMemberInfo()
Dim c As Control
Dim b As Binding
For Each c In Me.Controls
For Each b In c.DataBindings
Console.WriteLine(ControlChars.Cr + c.ToString())
Dim bInfo As BindingMemberInfo = b.BindingMemberInfo
Console.WriteLine("Binding Path " + ControlChars.Tab _
+ bInfo.BindingPath)
Console.WriteLine("Binding Field " + ControlChars.Tab _
+ bInfo.BindingField)
Console.WriteLine("Binding Member " + ControlChars.Tab _
+ bInfo.BindingMember)
Next b
Next c
End Sub
Remarks
The BindingMemberInfo is returned by the BindingMemberInfo property of the Binding class.
The BindingMemberInfo is created from the string passed to the BindingMemberInfo constructor.
Constructors
BindingMemberInfo(String) |
Initializes a new instance of the BindingMemberInfo class. |
Properties
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. |
Methods
Equals(BindingMemberInfo) |
Indicates whether the current object is equal to another object of the same type. |
Equals(Object) |
Determines whether the specified object is equal to this BindingMemberInfo. |
GetHashCode() |
Returns the hash code for this BindingMemberInfo. |
Operators
Equality(BindingMemberInfo, BindingMemberInfo) |
Determines whether two BindingMemberInfo objects are equal. |
Inequality(BindingMemberInfo, BindingMemberInfo) |
Determines whether two BindingMemberInfo objects are not equal. |