Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
Row

RowsChangingEventArgs(String, Int32, Int32) Constructor

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

Namespace: DevExpress.Spreadsheet

Assembly: DevExpress.Spreadsheet.v19.1.Core.dll

Declaration

public RowsChangingEventArgs(
    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 row from which the operation starts.

count Int32

An integer specifying the number of rows affected.

Remarks

The RowsChangingEventArgs is created automatically and passed to the handler of the SpreadsheetControl.RowsInserting and SpreadsheetControl.RowsRemoving events.

See Also