接口 IFormulaOptions
public interface IFormulaOptions
Represents the options related to formula calculation, performance, and error handing.
-
方法概要
修饰符和类型方法说明boolean
Gets whether to enable iterative calculation.double
Gets the maximum change of iterative calculation.int
Gets the maximum iterations of iterative calculation.void
setEnableIterativeCalculation
(boolean value) Sets whether to enable iterative calculation.void
setMaximumChange
(double value) Sets the maximum change of iterative calculation.void
setMaximumIterations
(int value) Sets the maximum iterations of iterative calculation.
-
方法详细资料
-
getEnableIterativeCalculation
boolean getEnableIterativeCalculation()Gets whether to enable iterative calculation. -
setEnableIterativeCalculation
void setEnableIterativeCalculation(boolean value) Sets whether to enable iterative calculation. -
getMaximumIterations
int getMaximumIterations()Gets the maximum iterations of iterative calculation. -
setMaximumIterations
void setMaximumIterations(int value) Sets the maximum iterations of iterative calculation. -
getMaximumChange
double getMaximumChange()Gets the maximum change of iterative calculation. -
setMaximumChange
void setMaximumChange(double value) Sets the maximum change of iterative calculation.
-