jasenj1 wrote
> 
> 

> CellStyle hidden = out_wb.createCellStyle(); // Create a new style in the
> workbook
> hidden.setHidden(true);                      // make it hidden
> out_sheet.getRow(0).setRowStyle(hidden);     // Set the style on the row.
> 

> 

Have you tried setting the row height to 0?

                    
out_sheet.getRow(0).setHeight((short) 0);    



--
View this message in context: 
http://apache-poi.1045710.n5.nabble.com/Trouble-with-hiding-rows-in-Excel-tp5590626p5590721.html
Sent from the POI - User mailing list archive at Nabble.com.

Reply via email to