BindingManagerBase.Current プロパティ

定義

派生クラスでオーバーライドされると、現在のオブジェクトを取得します。

public:
 abstract property System::Object ^ Current { System::Object ^ get(); };
public abstract object Current { get; }
public abstract object? Current { get; }
member this.Current : obj
Public MustOverride ReadOnly Property Current As Object

プロパティ値

現在のオブジェクトを表す Object

次のコード例では、 イベントの 内BindingManagerBaseCurrent オブジェクトの値をCurrentChanged出力します。 この例では、データ ソースが という名前CustNameの をDataTable含む DataColumn であることを前提としています。

void Current_Changed( Object^ sender, EventArgs^ /*e*/ )
{
   BindingManagerBase^ bm = dynamic_cast<BindingManagerBase^>(sender);
   
   /* Check the type of the Current object. If it is not a 
           DataRowView, exit the method. */
   if ( bm->Current->GetType() != DataRowView::typeid )
         return;

   // Otherwise, print the value of the column named "CustName".
   DataRowView^ drv = dynamic_cast<DataRowView^>(bm->Current);
   Console::Write( "CurrentChanged): " );
   Console::Write( drv[ "CustName" ] );
   Console::WriteLine();
}
private void Current_Changed(object sender, EventArgs e)
{
    BindingManagerBase bm = (BindingManagerBase) sender;
    /* Check the type of the Current object. If it is not a 
    DataRowView, exit the method. */
    if(bm.Current.GetType() != typeof(DataRowView)) return;

    // Otherwise, print the value of the column named "CustName".
    DataRowView drv = (DataRowView) bm.Current;
    Console.Write("CurrentChanged): ");
    Console.Write(drv["CustName"]);
    Console.WriteLine();
}
Private Sub Current_Changed(sender As Object, e As EventArgs)
    Dim bm As BindingManagerBase = CType(sender, BindingManagerBase)
    ' Check the type of the Current object. If it is not a
    ' DataRowView, exit the method. 
    If bm.Current.GetType() IsNot GetType(DataRowView) Then
        Return
    End If 
    ' Otherwise, print the value of the column named "CustName".
    Dim drv As DataRowView = CType(bm.Current, DataRowView)
    Console.Write("CurrentChanged): ")
    Console.Write(drv("CustName"))
    Console.WriteLine()
End Sub

注釈

オブジェクトには Current 、データ ソース内の現在の項目の値が含まれています。 現在の項目の値を使用するには、 に含まれるオブジェクトの に Type 項目をキャストする DataSource必要があります。 たとえば、 には DataTable オブジェクトが DataRowView 含まれています。 現在のオブジェクトの型を確認するには、 メソッドと ToString メソッドをGetType使用します。

Note

DataSourceが 、DataViewManager、または DataTableDataSet場合、実際には にDataViewバインドされます。 したがって、各 Current オブジェクトは オブジェクトです DataRowView

適用対象

こちらもご覧ください