Skip to main content
A newer version of this page is available. .

ColumnView.RowDeleted Event

Fires after a data row is deleted.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v18.2.dll

Declaration

[DXCategory("Action")]
public event RowDeletedEventHandler RowDeleted

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.

See Also