DataRowChangeEventArgs.Row Właściwość

Definicja

Pobiera wiersz, na którym wystąpiła akcja.

public:
 property System::Data::DataRow ^ Row { System::Data::DataRow ^ get(); };
public System.Data.DataRow Row { get; }
member this.Row : System.Data.DataRow
Public ReadOnly Property Row As DataRow

Wartość właściwości

Na DataRow którym wystąpiła akcja.

Przykłady

Poniższy przykład dodaje procedurę DataRowChangeEventHandler i do obsługi zdarzenia po zmianie wiersza.


Private dataTable As DataTable

Private Sub [AddHandler]()
   dataTable = CType(DataGrid1.DataSource, DataTable)
   AddHandler dataTable.RowChanged, AddressOf Me.dataTable_Changed
End Sub

Private Sub dataTable_Changed _
(ByVal sender As System.Object, ByVal e As System.Data.DataRowChangeEventArgs)
   Console.WriteLine("Row Changed", e.Action, e.Row.Item(DataGrid1.CurrentCell.ColumnNumber))
End Sub

Dotyczy

Zobacz też