DataRowChangeEventArgs.Row Propiedad

Definición

Obtiene la fila sobre la que se ha producido una acción.

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

Valor de propiedad

DataRow sobre el que se ha producido una acción.

Ejemplos

En el ejemplo siguiente se agrega un DataRowChangeEventHandler y el procedimiento para controlar el evento cuando se cambia una fila.


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

Se aplica a

Consulte también