Aspose::Cells::FormulaParseOptions class

FormulaParseOptions class

Represents options when parsing formula.

class FormulaParseOptions

Methods

MethodDescription
FormulaParseOptions()Default constructor.
FormulaParseOptions(FormulaParseOptions_Impl* impl)Constructs from an implementation object.
FormulaParseOptions(const FormulaParseOptions& src)Copy constructor.
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).
GetCustomFunctionDefinition()Definition for parsing custom functions.
GetLocaleDependent()Whether the formula is locale formatted. Default is false.
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 them or parsed formula data is required by other operations such as calculating formulas.
GetR1C1Style()Whether the formula is R1C1 reference style. Default is false.
IsNull() constChecks whether the implementation object is nullptr.
explicit operator bool() constoperator bool()
operator=(const FormulaParseOptions& src)operator=
SetCheckAddIn(bool value)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).
SetCustomFunctionDefinition(CustomFunctionDefinition* value)Definition for parsing custom functions.
SetLocaleDependent(bool value)Whether the formula is locale formatted. Default is false.
SetParse(bool value)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.
SetR1C1Style(bool value)Whether the formula is R1C1 reference style. Default is false.
~FormulaParseOptions()Destructor.

Fields

FieldDescription
_implThe implementation object.

See Also