https://issues.apache.org/bugzilla/show_bug.cgi?id=46660
Josh Micich <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #1 from Josh Micich <[email protected]> 2009-02-13 13:50:54 PST --- Added in svn r744253 ( https://svn.apache.org/viewcvs.cgi?view=rev&rev=744253 ) New methods were added to Workbook interface Some sample code: InputStream is = new FileInputStream("HiddenTest.xls"); HSSFWorkbook wb = new HSSFWorkbook(is); System.out.println("original hidden flag: " + wb.isHidden()); wb.setHidden(false); OutputStream os = new FileOutputStream("NotHiddenNow.xls"); wb.write(os); os.close(); -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
