ASPxClientSpreadsheet.CellCancelEdit Event
Occurs before the active cell’s editor is closed and the entered value is rolled back.
Declaration
CellCancelEdit: ASPxClientEvent<ASPxClientSpreadsheetCellCancelEditEventHandler<ASPxClientSpreadsheet>>
Event Data
The CellCancelEdit event's data class is ASPxClientSpreadsheetCellCancelEditEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
columnIndex | Gets the active cell’s column index. |
displayText | Specifies the text displayed in the processed cell. |
formula | Gets the active cell’s formula. |
rowIndex | Gets the active cell’s row index. |
sheetName | Gets the current worksheet’s name. |
value | Gets the active cell’s current value. |
Remarks
The event triggers when an end-user cancels editing of the active cell or the ASPxClientSpreadsheet.CancelCellEdit method is called. Handle the CellCancelEdit event to perform any actions before the cell editor is deactivated and the entered value is rolled back.
See Also