Skip to main content

GridControl.RowUpdated Event

Occurs when the GridControl updates the data source with the changes made within the focused row.

Namespace: DevExpress.WinUI.Grid

Assembly: DevExpress.WinUI.Grid.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public event RowEventHandler RowUpdated

Event Data

The RowUpdated event's data class is RowEventArgs. The following properties provide information specific to this event:

Property Description
Row Gets the processed row.
RowHandle Gets the processed row’s handle.
Source Gets the GridControl that raised this event.

Remarks

The GridControl validates changes made in the focused row when you try to move focus to another row. You can also invoke the DataControlBase.CommitEditing method to validate changes. If new values are valid, the GridControl updates the data source and the RowUpdated event occurs. The RowEventArgs.Row and RowEventArgs.RowHandle properties return the processed row and the row’s handle, respectively.

See Also