Skip to main content

SpreadsheetCustomCellEditEventArgs(InnerSpreadsheetControl, Worksheet, Int32, Int32, ValueObject, RepositoryItem) Constructor

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

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v23.2.dll

NuGet Package: DevExpress.Win.Spreadsheet

Declaration

public SpreadsheetCustomCellEditEventArgs(
    InnerSpreadsheetControl innerControl,
    Worksheet sheet,
    int columnIndex,
    int rowIndex,
    ValueObject valueObject,
    RepositoryItem repositoryItem
)

Parameters

Name Type Description
innerControl DevExpress.XtraSpreadsheet.Internal.InnerSpreadsheetControl

An InnerSpreadsheetControl object.

sheet DevExpress.XtraSpreadsheet.Model.Worksheet

A worksheet that contains the cell for which the event has been raised.

columnIndex Int32

An integer specifying the index of the column that contains the cell for which the event has been raised.

rowIndex Int32

An integer specifying the index of the row that contains the cell for which the event has been raised.

valueObject ValueObject

A ValueObject value associated with the custom in-place editor assigned to the processed cell.

repositoryItem RepositoryItem

A RepositoryItem descendant specifying the in-place editor assigned to the processed cell.

Remarks

The SpreadsheetCustomCellEditEventArgs is created automatically and passed to the handler of the SpreadsheetControl.CustomCellEdit event.

See Also