BindingsCollection.Item[Int32] Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает объект Binding по указанному индексу.
public:
property System::Windows::Forms::Binding ^ default[int] { System::Windows::Forms::Binding ^ get(int index); };
public System.Windows.Forms.Binding this[int index] { get; }
member this.Item(int) : System.Windows.Forms.Binding
Default Public ReadOnly Property Item(index As Integer) As Binding
Параметры
Значение свойства
Объект Binding по указанному индексу.
Исключения
Эта коллекция не содержит элемент по указанному индексу.
Примеры
В следующем примере выводится BindingMember значение каждого Binding элемента управления BindingsCollection.
void PrintBindingInfo()
{
BindingsCollection^ bc = text1->DataBindings;
for ( int i = 0; i < bc->Count; i++ )
Console::WriteLine( bc[ i ]->BindingMemberInfo.BindingMember );
}
private void PrintBindingInfo()
{
BindingsCollection bc = text1.DataBindings;
for(int i = 0; i < bc.Count; i++)
Console.WriteLine(bc[i].BindingMemberInfo.BindingMember);
}
Private Sub PrintBindingInfo()
Dim bc As BindingsCollection = Text1.DataBindings
Dim i As Integer
For i = 0 to bc.Count - 1
Console.WriteLine(bc(i).BindingMemberInfo.BindingMember)
Next i
End Sub