Interface FormulaBarHandler
-
- All Known Implementing Classes:
SpreadsheetWidget
public interface FormulaBarHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringcreateCellAddress(int column, int row)StringgetActiveSheetName()String[]getSheetNames()booleanisTouchMode()voidonAddressEntered(String value)voidonAddressFieldEsc()voidonFormulaEnter(String value)voidonFormulaEsc()voidonFormulaFieldBlur(String value)voidonFormulaFieldFocus(String value)Swap the cell data to the value if it is a formula.voidonFormulaTab(String value, boolean focusSheet)voidonFormulaValueChange(String value)voidsetSheetFocused(boolean focused)
-
-
-
Method Detail
-
onAddressEntered
void onAddressEntered(String value)
-
onAddressFieldEsc
void onAddressFieldEsc()
-
onFormulaFieldFocus
void onFormulaFieldFocus(String value)
Swap the cell data to the value if it is a formula.
-
onFormulaFieldBlur
void onFormulaFieldBlur(String value)
-
onFormulaEnter
void onFormulaEnter(String value)
-
onFormulaTab
void onFormulaTab(String value, boolean focusSheet)
-
onFormulaEsc
void onFormulaEsc()
-
onFormulaValueChange
void onFormulaValueChange(String value)
-
isTouchMode
boolean isTouchMode()
-
setSheetFocused
void setSheetFocused(boolean focused)
-
createCellAddress
String createCellAddress(int column, int row)
-
getSheetNames
String[] getSheetNames()
-
getActiveSheetName
String getActiveSheetName()
-
-