Skip to main content
Tab

ASPxGridView.DeleteRow(Int32) Method

Deletes the specified row.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public void DeleteRow(
    int visibleIndex
)

#Parameters

Name Type Description
visibleIndex Int32

An integer value that identifies the row.

#Remarks

Once the DeleteRow method is called, the ASPxGridView.RowDeleting event is raised. It allows you to cancel the delete operation. After a row has been deleted, the ASPxGridView.RowDeleted event is raised.

End-users can delete rows by clicking the Delete command.

See Also