AbstractFormulaChangeMonitor

AbstractFormulaChangeMonitor class

Monitor for user to track the change of formulas during certain operations.

class AbstractFormulaChangeMonitor;

Remarks

For example, while deleting/inserting range of cells, formulas of other cells may be changed because of the shift of references.

Methods

MethodDescription
onCellFormulaChanged(number, number, number)The event that will be triggered when the formula in a cell is changed.
isNull()Checks whether the implementation object is null.

onCellFormulaChanged(number, number, number)

The event that will be triggered when the formula in a cell is changed.

onCellFormulaChanged(sheetIndex: number, rowIndex: number, columnIndex: number) : void;

Parameters:

ParameterTypeDescription
sheetIndexnumberThe sheet index of the changed cell
rowIndexnumberThe row index of the changed cell
columnIndexnumberThe column index of the changed cell

isNull()

Checks whether the implementation object is null.

isNull() : boolean;