https://bz.apache.org/bugzilla/show_bug.cgi?id=65465
Bug ID: 65465
Summary: createFreezePane not working with
DeferredSXSSFWorkbook
Product: POI
Version: 5.0.x-dev
Hardware: PC
Status: NEW
Severity: normal
Priority: P2
Component: SXSSF
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
I've tried calling createFreezePane(0,1) both before and after first call to
createRow but it's not doing anything.
Similar code works with SXSSFWorkbook.
<code>
try (var wb = new DeferredSXSSFWorkbook(10)) {
wb.createSheet().setRowGenerator(sheet -> {
sheet.createFreezePane(0,1);
var row = sheet.createRow(0);
var cell = row.createCell(0, CellType.STRING);
cell.setCellValue("header1");
});
wb.write(os);
}
</code>
--
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]