FormulaParseOptions

FormulaParseOptions class

Represents options when parsing formula.

Constructors

NameDescription
FormulaParseOptions

Properties

NameTypeDescription
LocaleDependentbooleanWhether the formula is locale formatted. Default is false.
R1C1StylebooleanWhether the formula is R1C1 reference style. Default is false.
CheckAddInbooleanWhether check addins in existing external links of current workbook for user defined function without external link. Def
ParsebooleanWhether parse given formula. Default is true. If it is false, then given formula string will be kept as it is for the ce
CustomFunctionDefinitionCustomFunctionDefinitionDefinition for parsing custom functions. For some special requirements, such as when calculating custom function in user

FormulaParseOptions()

FormulaParseOptions.LocaleDependent property

Whether the formula is locale formatted. Default is false.

Type: boolean

FormulaParseOptions.R1C1Style property

Whether the formula is R1C1 reference style. Default is false.

Type: boolean

FormulaParseOptions.CheckAddIn property

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).

Type: boolean

FormulaParseOptions.Parse property

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 them or parsed formula data is required by other operations such as calculating formulas.

Type: boolean

FormulaParseOptions.CustomFunctionDefinition property

Definition for parsing custom functions. For some special requirements, such as when calculating custom function in user’s custom engine, some parameters of it need to be caculated in array mode, using this property can mark those parameters as array mode when parsing the formula. Otherwise user needs to update those custom functions later by Workbook.updateCustomFunctionDefinition(com.aspose.cells.CustomFunctionDefinition) to get the same result.

Type: CustomFunctionDefinition