Skip to main content
Row

ColumnsChangingEventArgs(String, Int32, Int32) Constructor

Initializes a new instance of the ColumnsChangingEventArgs class with the specified settings.

Namespace: DevExpress.Spreadsheet

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

NuGet Package: DevExpress.Spreadsheet.Core

Declaration

public ColumnsChangingEventArgs(
    string sheetName,
    int startIndex,
    int count
)

Parameters

Name Type Description
sheetName String

A string that is the name of the worksheet being modified.

startIndex Int32

An integer specifying the index of the column from which the operation starts.

count Int32

An integer specifying the number of columns affected.

Remarks

The ColumnsChangingEventArgs is created automatically and passed to the handler of the SpreadsheetControl.ColumnsInserting and SpreadsheetControl.ColumnsRemoving events.

See Also