ig.excel.FormulaParseException
Dependencies
-
ig.excel.FormulaParseException
Constructor- new $.ig.excel.FormulaParseException( );
Initializes a new instance of the FormulaParseException class.
-
ig.excel.FormulaParseException
Constructor- new $.ig.excel.FormulaParseException( message:string );
Initializes a new instance of the FormulaParseException class with a specified error message.
- message
- Type:string
- The message that describes the error.
-
ig.excel.FormulaParseException
Constructor- new $.ig.excel.FormulaParseException( message:string, innerException:ig.Error );
Initializes a new instance of the FormulaParseException class with a specified error message.
- message
- Type:string
- The message that describes the error.
- innerException
- Type:ig.Error
- The exception that is the cause of this exception.
-
ig.excel.FormulaParseException
Constructor- new $.ig.excel.FormulaParseException( charIndexOfError:number, formulaValue:string, message:string, portionWithError:string );
Initializes a new instance of the FormulaParseException class with a specified error message and information which helps determine the location of the parse error in the formula.
- charIndexOfError
- Type:number
- The character index in the formulaValue parameter where the parse error occurred.
- formulaValue
- Type:string
- The formula which had the error being parsed.
- message
- Type:string
- The message that describes the error.
- portionWithError
- Type:string
- The portion of the formula which had the error being parsed.
-
charIndexOfError
- .charIndexOfError( );
- Return Type:
- number
- Return Type Description:
- The character index in the FormulaValue at which the parse error occurred.
Gets the character index in the FormulaParseException.formulaValue at which the parse error occurred.
-
formulaValue
- .formulaValue( );
- Return Type:
- string
- Return Type Description:
- The formula string which had the error being parsed.
Gets the formula string which had the error being parsed.
-
message
- .message( );
Gets the error message and the portion of the formula with the error.
-
portionWithError
- .portionWithError( );
Gets the portion of the formula which contains the error.