Skip to main content
Row

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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