Examples of RefPtgBase


Examples of org.zkoss.poi.ss.formula.ptg.RefPtgBase

    return PtgShifter.createDeletedRef(ptg);
  }

  private static Ptg offsetPtg(Ptg ptg, Cell dstCell, int offRow, int offCol, SpreadsheetVersion ver) {
    if(ptg instanceof RefPtgBase) {
      final RefPtgBase rptg = (RefPtgBase)ptg;
      return rptgSetRowCol(rptg, dstCell, offRow, offCol, ver);
    }
    if(ptg instanceof AreaPtgBase) {
      final AreaPtgBase aptg = (AreaPtgBase) ptg;
      return aptgSetRowCol(aptg, dstCell, offRow, offCol, ver);
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.