Beispiel #1
0
 /**
  * Set a error value for the cell
  *
  * @param error the error value to set this cell to. For formulas we'll set the precalculated
  *     value , for errors we'll set its value. For other types we will change the cell to an error
  *     cell and set its value.
  */
 public void setCellErrorValue(FormulaError error) {
   _cell.setT(STCellType.E);
   _cell.setV(error.getString());
 }