The custom formula calculation functions to extend the calculation engine.
NOTE: This member is now obsolete. Instead,
please use CustomEngine property, AbstractCalculationEngine provides more convenient and flexible APIs
for manipulating custom functions.
This property will be removed 12 months later since August 2020.
Aspose apologizes for any inconvenience you may have experienced.
The monitor for user to track the progress of formula calculation.
getCalcStackSize/setCalcStackSize
public int getCalcStackSize() / public void setCalcStackSize(int value)
Specifies the stack size for calculating cells recursively.
When there are large amount of cells need to be calculated recursively in the dependency tree,
StackOverflowException may be caused in the calculation process.
If so, user should specify smaller value for this property.
For such situation, user should determine the proper value for this property according to the actual formulas and data.
Too small value may cause performance degradation for the formula calculation.
getPrecisionStrategy/setPrecisionStrategy
public int getPrecisionStrategy() / public void setPrecisionStrategy(int value)
Specifies the strategy for processing precision of calculation.
The value of the property is CalculationPrecisionStrategy integer constant.
getRecursive/setRecursive
public boolean getRecursive() / public void setRecursive(boolean value)
Indicates whether calculate the dependent cells recursively when calculating one cell and it depends on other cells.