DataRowChangeEventArgs::Action Property
.NET Framework (current version)
Gets the action that has occurred on a DataRow.
Assembly: System.Data (in System.Data.dll)
The following example adds a DataRowChangeEventHandler and the procedure to handle the event when a row is changed.
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
.NET Framework
Available since 1.1
Available since 1.1
Show: