ColumnView.RowDeleted Event
Fires after a data row is deleted.
Namespace: DevExpress.XtraGrid.Views.Base
Assembly: DevExpress.XtraGrid.v22.2.dll
NuGet Package: DevExpress.Win.Grid
Declaration
Event Data
The RowDeleted event's data class is RowDeletedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
ListSourceIndex | Gets the index of the current row in the data source. |
Row | Gets the currently processed row. |
RowHandle | Gets the row handle (id) that identifies the position of the current row in the control. |
Remarks
To delete a row in the ColumnView, you can use the ColumnView.DeleteRow and ColumnView.DeleteSelectedRows methods. The RowDeleted event fires after data row deletion and does not allow you to cancel the action.