Package com.extentech.formats.XLS

Examples of com.extentech.formats.XLS.Shrfmla


     
  /**
   * custom RefTracker usage:  uses entire range covered by all shared formulas
   */
  public PtgArea getArea() {
    Shrfmla sh= (Shrfmla) this.getParentRec();
      int[] i = new int[4];
        if (fRwRel) {
            i[0] = sh.getFirstRow() + firstPtgN.rw;
        }else {
            i[0] = firstPtgN.rw;
        }
        if (fColRel) {
            i[1] = sh.getFirstCol() + firstPtgN.col;
        }else {
            i[1] = firstPtgN.col;
        }
        if (fRwRel) {
            i[2] = sh.getLastRow() + lastPtgN.rw;
        }else {
            i[2] = lastPtgN.rw;
        }
        if (fColRel) {
            i[3] = sh.getLastCol() + lastPtgN.col;
        }else {
            i[3] = lastPtgN.col;
        }
       
      if (i[1]>=MAXCOLS_BIFF8 &&
View Full Code Here

TOP

Related Classes of com.extentech.formats.XLS.Shrfmla

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.