https://issues.apache.org/bugzilla/show_bug.cgi?id=47581
Yegor Kozlov <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #1 from Yegor Kozlov <[email protected]> 2009-08-05 10:15:55 PDT --- Can you attach a sample code that demonstrates the problem? The following code works fine to me: XSSFWorkbook wb = new XSSFWorkbook(); XSSFSheet sh = wb.createSheet(); sh.setColumnWidth(0, 256*5); //5-character wide sh.setColumnWidth(1, 256*20); //20-character wide sh.setColumnWidth(2, 256*50); //50-character wide FileOutputStream out = new FileOutputStream("bug-47581.xlsx"); wb.write(out); out.close(); I tested with current trunk and Excel 2007. Yegor -- 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]
