Examples of insertLocation()


Examples of com.extentech.formats.XLS.Externsheet.insertLocation()

    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
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.