FormulaParseOptions Class
Contents
[
Hide
]FormulaParseOptions class
Represents options when parsing formula.
type FormulaParseOptions struct {
ptr unsafe.Pointer
}
Constructors
Method | Description |
---|---|
NewFormulaParseOptions | Default constructor. |
Methods
Method | Description |
---|---|
IsNull | Checks whether the implementation object is nullptr. |
GetLocaleDependent | Whether the formula is locale formatted. Default is false. |
SetLocaleDependent | Whether the formula is locale formatted. Default is false. |
GetR1C1Style | Whether the formula is R1C1 reference style. Default is false. |
SetR1C1Style | Whether the formula is R1C1 reference style. Default is false. |
GetCheckAddIn | Whether check addins in existing external links of current workbook for user defined function without external link.Default is true(if user defined function matches one addin in existing external links, then take it as the addin). |
SetCheckAddIn | Whether check addins in existing external links of current workbook for user defined function without external link.Default is true(if user defined function matches one addin in existing external links, then take it as the addin). |
GetParse | Whether parse given formula. Default is true.If it is false, then given formula string will be kept as it is for the cell until user call other methods to parse themor parsed formula data is required by other operations such as calculating formulas. |
SetParse | Whether parse given formula. Default is true.If it is false, then given formula string will be kept as it is for the cell until user call other methods to parse themor parsed formula data is required by other operations such as calculating formulas. |
GetCustomFunctionDefinition | Definition for parsing custom functions. |
SetCustomFunctionDefinition | Definition for parsing custom functions. |