Package com.grapecity.documents.excel
Class FormulaJsonError
java.lang.Object
com.grapecity.documents.excel.JsonError
com.grapecity.documents.excel.FormulaJsonError
Represents the formula error in the json.
-
Constructor Summary
ConstructorsConstructorDescriptionFormulaJsonError(String errorMessage, String worksheetName, int row, int column, String formula) Constructs a new FormulaJsonError object with the specified error message, worksheet name, row, column, and formula. -
Method Summary
Modifier and TypeMethodDescriptionintGet the column index.Get the formula text.intgetRow()Get the row index.Get the worksheet name.Methods inherited from class com.grapecity.documents.excel.JsonError
getErrorMessage
-
Constructor Details
-
FormulaJsonError
public FormulaJsonError(String errorMessage, String worksheetName, int row, int column, String formula) Constructs a new FormulaJsonError object with the specified error message, worksheet name, row, column, and formula.- Parameters:
errorMessage- The error message associated with the formula error.worksheetName- The name of the worksheet where the formula error occurred.row- The row index where the formula error occurred.column- The column index where the formula error occurred.formula- The formula that caused the error.
-
-
Method Details
-
getWorksheetName
Get the worksheet name. -
getRow
public int getRow()Get the row index. -
getColumn
public int getColumn()Get the column index. -
getFormula
Get the formula text.
-