DataRowChangeEventArgs.Action Propriété

Définition

Obtient l’action qui s’est produite sur un DataRow.

public:
 property System::Data::DataRowAction Action { System::Data::DataRowAction get(); };
public System.Data.DataRowAction Action { get; }
member this.Action : System.Data.DataRowAction
Public ReadOnly Property Action As DataRowAction

Valeur de propriété

Une des valeurs de l'objet DataRowAction.

Exemples

L’exemple suivant ajoute une DataRowChangeEventHandler et la procédure pour gérer l’événement lorsqu’une ligne est modifiée.


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

S’applique à

Voir aussi