Examples of PtgExp


Examples of com.extentech.formats.XLS.formulas.PtgExp

      Iterator<Formula> ii= members.iterator();
      while (ii.hasNext()) {
        Formula f= ii.next();
        f.clearCachedValue();
        // also update PtgExp
        PtgExp pointer = (PtgExp) f.getExpression().get(0);
        pointer.setRowFirst(pointer.getRwFirst()+shiftamount);
      }
      setFirstRow(rwFirst + shiftamount);
      setLastRow(rwLast + shiftamount);
      for (int i= 0; i < ptgcache.length; i++) {
      if (ptgcache[i] instanceof PtgRefN)
View Full Code Here

Examples of com.extentech.formats.XLS.formulas.PtgExp

     * The returned <code>PtgExp</code> points to this record at its current
     * location. If the host cell or its address changes the pointer will
     * become invalid.
     */
    public PtgExp getPointer() {
      PtgExp pointer = new PtgExp();
      pointer.setParentRec(host);
    pointer.init( host.getRowNumber(), host.getColNumber() );
    return pointer;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.