Results 1 to 1 of 1
Thread: Footers in jxl
- 02-26-2009, 03:23 PM #1
Member
- Join Date
- Feb 2009
- Posts
- 2
- Rep Power
- 0
Footers in jxl
Hi folks,
I'm trying to add a footer to an Excel spreadsheet created using jxl. This is the code I used, but it doesn't work. Can anyone tell me what I'm doing wrong?
WritableWorkbook workbook = Workbook.createWorkbook(new File("output.xls"));
WritableSheet sheet = workbook.createSheet("First Sheet", 0);
SheetSettings settings = sheet.getSettings();
HeaderFooter footer = settings.getFooter();
footer.getRight().append("Test Footer");
Thanks!
Rick Kaufman


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks