GridViewBase.RowUpdated Event
Occurs after the changes made within the focused row are posted to a data source.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v14.2.dll
#Declaration
#Event Data
The RowUpdated event's handler receives an argument of the RowEventArgs type. The following properties provide information specific to this event:
Property | Description |
---|---|
Handled |
Gets or sets a value that indicates the present state of the event handling for a routed event as it travels the route.
Inherited from Routed |
Original |
Gets the original reporting source as determined by pure hit testing, before any possible Source adjustment by a parent class.
Inherited from Routed |
Routed |
Gets or sets the Routed |
Row | Gets the processed row. |
Row |
Gets the processed row's handle. |
Source | Gets the View that raised the event. |
#Remarks
The grid automatically validates the changes made within the focused row when the row focus is about to be moved to another row. This can also be manually accomplished by calling the DataViewBase.CommitEditing method. If all new values are valid, they are posted to the grid's data source. As a result, the RowUpdated event is raised. The processed row and its handle are returned by the RowEventArgs.Row and RowEventArgs.RowHandle properties, respectively.