Package com.extentech.ExtenXLS

Examples of com.extentech.ExtenXLS.CommentHandle.show()


          CellHandle cell = sheet.add("Cell F7", "F7");
          // add a note to cell A1, specifying note text and author name
          sheet.createNote("A1", "This is a note attached to Cell A1", "cagney");
          // add a note to cell D2, specifying note text and author name
          CommentHandle nh= sheet.createNote("D2", "this is a note attached to D2\nshown", "maya");
          nh.show()// make note at D2 always shown 
          cell.createComment("Another Note attached to F7.  This is very very long\nMultiLine\nRambling ...", "elmer");
          book.write(workingdir + "testAddNotesOUT.xls");
      }catch(Exception e) {
      Logger.logInfo(e.toString());
      }
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.