SpreadsheetControl.RowsRemoving Event
Occurs when rows are about to be deleted from a worksheet.
Namespace: DevExpress.XtraSpreadsheet
Assembly: DevExpress.XtraSpreadsheet.v24.2.dll
NuGet Package: DevExpress.Win.Spreadsheet
#Declaration
#Event Data
The RowsRemoving event's data class is RowsChangingEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Cancel |
Gets or sets a value indicating whether the event should be canceled.
Inherited from Cancel |
Count |
Gets the number of rows/columns that will be inserted or removed.
Inherited from Rows |
Start |
Gets the index of the first row/column after which rows/columns will be inserted or removed.
Inherited from Rows |
#Remarks
The RowsRemoving event allows you to perform any actions before an end-user removes rows from a worksheet using the control’s UI. To prevent rows from being deleted, set the event parameter’s Cancel property to true.
After rows have been removed from a worksheet, the SpreadsheetControl.RowsRemoved event is raised.
Note
By default, the Rows