Skip to main content
A newer version of this page is available. .

ASPxClientSpreadsheet.CellBeginEdit Event

Occurs before the cell editor is opened.

Declaration

CellBeginEdit: ASPxClientEvent<ASPxClientSpreadsheetCellBeginEditEventHandler<ASPxClientSpreadsheet>>

Event Data

The CellBeginEdit event's data class is ASPxClientSpreadsheetCellBeginEditEventArgs. The following properties provide information specific to this event:

Property Description
cancel Gets or sets a value indicating whether the action which raised the event should be canceled. Inherited from ASPxClientCancelEventArgs.
columnIndex Gets the active cell’s column index.
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 activates a cell’s editor. Handle the CellBeginEdit event to perform any actions before the cell editor activated by an end-user is opened.

See Also