CalculationOptions Class
Contents
[
Hide
]CalculationOptions class
Represents options for calculation.
type CalculationOptions struct {
ptr unsafe.Pointer
}
Constructors
Method | Description |
---|---|
NewCalculationOptions | Default constructor. |
Methods
Method | Description |
---|---|
IsNull | Checks whether the implementation object is nullptr. |
GetIgnoreError | Indicates whether errors encountered while calculating formulas should be ignored.The error may be unsupported function, external links, etc.The default value is true. |
SetIgnoreError | Indicates whether errors encountered while calculating formulas should be ignored.The error may be unsupported function, external links, etc.The default value is true. |
GetRecursive | Indicates whether calculate the dependent cells recursively when calculating one cell and it depends on other cells.The default value is true. |
SetRecursive | Indicates whether calculate the dependent cells recursively when calculating one cell and it depends on other cells.The default value is true. |
GetCustomEngine | The custom formula calculation engine to extend the default calculation engine of Aspose.Cells. |
SetCustomEngine | The custom formula calculation engine to extend the default calculation engine of Aspose.Cells. |
GetCalcStackSize | The stack size for calculating cells recursively. Default value is 200. |
SetCalcStackSize | The stack size for calculating cells recursively. Default value is 200. |
GetPrecisionStrategy | Specifies the strategy for processing precision of calculation. |
SetPrecisionStrategy | Specifies the strategy for processing precision of calculation. |
GetCharacterEncoding | Specifies the encoding used for encoding/decoding characters when calculating formulas.For functions such as CHAR, CODE, the calculated result depends on the region settings and default charset of the environment.With this property user can specify the proper encoding used for those function to get the expected result. |
SetCharacterEncoding | Specifies the encoding used for encoding/decoding characters when calculating formulas.For functions such as CHAR, CODE, the calculated result depends on the region settings and default charset of the environment.With this property user can specify the proper encoding used for those function to get the expected result. |