Package org.zkoss.poi.ss.formula.ptg

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


    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);
    }
    return ptg;
  }
View Full Code Here

TOP

Related Classes of org.zkoss.poi.ss.formula.ptg.AreaPtgBase

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.