formulaErrorStrings property
The list of error strings which are used within the Essential Calculate internally. Users can make changes to this internal error strings. Default settings by assigning the new strings to the corresponding position.Reload_errorStrings should be invoked to reset or modify the internal error strings.
Implementation
final List<String> formulaErrorStrings = <String>[
'binary operators cannot start an expression', ////0
'cannot parse', ////1
'bad library', ////2
'invalid char in front of', ////3
'number contains 2 decimal points', ////4
'expression cannot end with an operator', ////5
'invalid characters following an operator', ////6
'invalid character in number', ////7
'mismatched parentheses', ////8
'unknown formula name', ////9
'requires a single argument', ////10
'requires 3 arguments', ////11
'invalid Math argument', ////12
'requires 2 arguments', ////13
'#NAME?', ////'bad index', ////14
'too complex', ////15
'circular reference: ', ////16
'missing formula', ////17
'improper formula', ////18
'invalid expression', ////19
'cell empty', ////20
'bad formula', ////21
'empty expression', ////22
'', ////23
'mismatched string quotes', ////24
'wrong number of arguments', ////25
'invalid arguments', ////26
'iterations do not converge', ////27
'Control named "{0}" is already registered', ////28
'Calculation overflow', ////29
'Missing sheet' ////30
];