diff --git a/src/documentation/xdocs/hssf/quick-guide.xml b/src/documentation/xdocs/hssf/quick-guide.xml
index e189d48393..d4d3be4ab9 100644
--- a/src/documentation/xdocs/hssf/quick-guide.xml
+++ b/src/documentation/xdocs/hssf/quick-guide.xml
@@ -31,7 +31,8 @@
Reading and writing
Use newlines in cells.
Create user defined data formats.
- Set print area for a sheet.
+ Fit sheet to one page
+ Set print area for a sheet.
Set page numbers on the footer of a sheet.
Shift rows.
Set a sheet as selected.
@@ -432,6 +433,22 @@
ps.setFitWidth((short)1);
+ // Create various cells and rows for spreadsheet.
+
+ FileOutputStream fileOut = new FileOutputStream("workbook.xls");
+ wb.write(fileOut);
+ fileOut.close();
+
+
+
+
+
-
-
+
+
The convience functions live in contrib and provide
utility features such as setting borders around merged