[]
        
(Showing Draft Content)

FormulaJsonError

Class FormulaJsonError

java.lang.Object
com.grapecity.documents.excel.JsonError
com.grapecity.documents.excel.FormulaJsonError

public class FormulaJsonError extends JsonError
Represents the formula error in the json.
  • 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

      public String getWorksheetName()
      Get the worksheet name.
    • getRow

      public int getRow()
      Get the row index.
    • getColumn

      public int getColumn()
      Get the column index.
    • getFormula

      public String getFormula()
      Get the formula text.