Skip to main content

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

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

Namespace: DevExpress.Xpf.Spreadsheet

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

NuGet Package: DevExpress.Wpf.Spreadsheet

Declaration

public SpreadsheetCustomCellEditEventArgs(
    InnerSpreadsheetControl innerControl,
    Worksheet sheet,
    int columnIndex,
    int rowIndex,
    ValueObject valueObject,
    BaseEditSettings editSettings
)

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.

editSettings BaseEditSettings

A BaseEditSettings 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