Interface Spreadsheet.CellValueChangeListener
-
- All Superinterfaces:
Serializable
- Enclosing class:
- Spreadsheet
public static interface Spreadsheet.CellValueChangeListener extends Serializable
Used for knowing when a user has changed the cell value in Spreadsheet UI.
-
-
Field Summary
Fields Modifier and Type Field Description static MethodCELL_VALUE_CHANGE_METHOD
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCellValueChange(Spreadsheet.CellValueChangeEvent event)This is called when user changes the cell value in Spreadsheet.
-
-
-
Field Detail
-
CELL_VALUE_CHANGE_METHOD
static final Method CELL_VALUE_CHANGE_METHOD
-
-
Method Detail
-
onCellValueChange
void onCellValueChange(Spreadsheet.CellValueChangeEvent event)
This is called when user changes the cell value in Spreadsheet.- Parameters:
event- CellValueChangeEvent that happened
-
-