Package com.extentech.formats.XLS

Examples of com.extentech.formats.XLS.Externsheet$rgxti


   * called from copy worksheet
   * different from PtgArea3d as PtgAreaErr3d's have not set their  firstPtg and lastPtg
   */
    public void setReferencedSheet(Boundsheet b) {
        int boundnum = b.getSheetNum();
        Externsheet xsht = b.getWorkBook().getExternSheet(true);
        //TODO: add handling for multi-sheet reference.  Already handled in externsheet
        try {
            int xloc = xsht.insertLocation(boundnum, boundnum);
          this.ixti = (short) xloc;
          if(ixti>0) this.sheetname= GenericPtg.qualifySheetname(this.getSheetName());
        }catch(WorkSheetNotFoundException e) {
            Logger.logErr("Unable to set referenced sheet in PtgRef3d " + e);
        }
View Full Code Here

TOP

Related Classes of com.extentech.formats.XLS.Externsheet$rgxti

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.