java.lang.Object
com.aspose.cells.CalculationOptions
public class CalculationOptions
| Constructor Summary |
|---|
CalculationOptions()
|
| Property Getters/Setters Summary | ||
|---|---|---|
int | getCalcStackSize() | |
void | setCalcStackSize(int) | |
| Specifies the stack size for calculating cells recursively. | ||
AbstractCalculationMonitor | getCalculationMonitor() | |
void | setCalculationMonitor(AbstractCalculationMonitor) | |
| The monitor for user to track the progress of formula calculation. | ||
AbstractCalculationEngine | getCustomEngine() | |
void | setCustomEngine(AbstractCalculationEngine) | |
| The custom formula calculation engine to extend the default calculation engine of Aspose.Cells. | ||
ICustomFunction | getCustomFunction() | |
void | setCustomFunction(ICustomFunction) | |
| The custom formula calculation functions to extend the calculation engine. | ||
boolean | getIgnoreError() | |
void | setIgnoreError(boolean) | |
| Indicates if you need to hide the error in calculating formulas. The error may be unsupported function, external links, etc. | ||
com.aspose.cells.Workbook[] | getLinkedDataSources() | |
void | setLinkedDataSources(com.aspose.cells.Workbook[]) | |
| Specifies the data sources for external links used in formulas. | ||
int | getPrecisionStrategy() | |
void | setPrecisionStrategy(int) | |
| Specifies the strategy for processing precision of calculation. The value of the property is CalculationPrecisionStrategy integer constant. | ||
boolean | getRecursive() | |
void | setRecursive(boolean) | |
| Indicates whether calculate the dependent cells recursively when calculating one cell and it depends on other cells. The default value if true. | ||
| Constructor Detail |
|---|
public CalculationOptions()
| Property Getters/Setters Detail |
|---|
getIgnoreError/setIgnoreError | |
public boolean getIgnoreError() / public void setIgnoreError(boolean value) | |
getRecursive/setRecursive | |
public boolean getRecursive() / public void setRecursive(boolean value) | |
getCustomFunction/setCustomFunction | |
public ICustomFunction getCustomFunction() / public void setCustomFunction(ICustomFunction value) | |
getCustomEngine/setCustomEngine | |
public AbstractCalculationEngine getCustomEngine() / public void setCustomEngine(AbstractCalculationEngine value) | |
getCalculationMonitor/setCalculationMonitor | |
public AbstractCalculationMonitor getCalculationMonitor() / public void setCalculationMonitor(AbstractCalculationMonitor value) | |
getCalcStackSize/setCalcStackSize | |
public int getCalcStackSize() / public void setCalcStackSize(int value) | |
getPrecisionStrategy/setPrecisionStrategy | |
public int getPrecisionStrategy() / public void setPrecisionStrategy(int value) | |
getLinkedDataSources/setLinkedDataSources | |
public com.aspose.cells.Workbook[] getLinkedDataSources() / public void setLinkedDataSources(com.aspose.cells.Workbook[] value) | |