Skip to main content
Row

RowsColumnsChangingEventArgsBase Class

Serves as the base for classes which provide data for the events which occur on inserting or removing rows and columns via the SpreadsheetControl‘s UI.

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v23.2.Core.dll

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public abstract class RowsColumnsChangingEventArgsBase :
    SheetCancelEventArgsBase

Remarks

The SpreadsheetControl class provides events that occur before rows or columns in a worksheet are inserted or removed (SpreadsheetControl.RowsInserting, SpreadsheetControl.ColumnsInserting, SpreadsheetControl.RowsRemoving and SpreadsheetControl.ColumnsRemoving).

The RowsColumnsChangingEventArgsBase class is the base for arguments of these events. It introduces properties to determine the number of rows/columns that should be inserted or removed (RowsColumnsChangingEventArgsBase.Count) and the index of the first row/column after which new rows/columns will be inserted or removed (RowsColumnsChangingEventArgsBase.StartIndex).

Inheritance

Object
EventArgs
CancelEventArgs
DevExpress.Spreadsheet.SheetCancelEventArgsBase
RowsColumnsChangingEventArgsBase
See Also