ASPxClientSpreadsheet.CellEndEdit Event
Occurs before the cell editor is closed and the entered value is committed.
Declaration
CellEndEdit: ASPxClientEvent<ASPxClientSpreadsheetCellEndEditEventHandler<ASPxClientSpreadsheet>>
Event Data
The CellEndEdit event's data class is ASPxClientSpreadsheetCellEndEditEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
cancel | Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs. |
columnIndex | Gets the active cell’s column index. Inherited from ASPxClientSpreadsheetCellBeginEditEventArgs. |
displayText | Specifies the text displayed in the processed cell. Inherited from ASPxClientSpreadsheetCellBeginEditEventArgs. |
editorText | Gets or sets the text stored within the active cell’s editor. |
formula | Gets the active cell’s formula. Inherited from ASPxClientSpreadsheetCellBeginEditEventArgs. |
rowIndex | Gets the active cell’s row index. Inherited from ASPxClientSpreadsheetCellBeginEditEventArgs. |
sheetName | Gets the current worksheet’s name. Inherited from ASPxClientSpreadsheetCellBeginEditEventArgs. |
value | Gets the active cell’s current value. Inherited from ASPxClientSpreadsheetCellBeginEditEventArgs. |
Remarks
The event triggers when an end-user applies a value stored within the editor to the active cell or the ASPxClientSpreadsheet.ApplyCellEdit method is called. Handle the CellEndEdit event to perform any actions before the cell editor is deactivated and the entered value is committed.
See Also