Package jxl

Examples of jxl.NumberFormulaCell


        final CellAddressImpl cellIndex = new CellAddressImpl( _sheetName, _xlsCell.getColumn(), _xlsCell.getRow() );
        throw new SpreadsheetException.LoadError( "Error parsing cell " + cellIndex, e );
      }
      _rowBuilder.addCellWithExpression( new LazySpreadsheetExpressionParser( expression, CellRefFormat.A1 ) );
      if (xlsFormulaCell instanceof NumberFormulaCell) {
        final NumberFormulaCell xlsNumFormulaCell = ((NumberFormulaCell) xlsFormulaCell);
        _rowBuilder.applyNumberFormat( convertNumberFormat( xlsNumFormulaCell, xlsNumFormulaCell.getNumberFormat() ) );
      }
      if (this.config.loadAllCellValues) {
        if (xlsFormulaCell instanceof NumberFormulaCell) {
          _rowBuilder.setValue( ((NumberFormulaCell) xlsFormulaCell).getValue() );
        }
View Full Code Here

TOP

Related Classes of jxl.NumberFormulaCell

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.