Return-Path: Delivered-To: apmail-jakarta-poi-dev-archive@www.apache.org Received: (qmail 45798 invoked from network); 23 Oct 2003 17:20:43 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 23 Oct 2003 17:20:43 -0000 Received: (qmail 56637 invoked by uid 500); 23 Oct 2003 17:20:35 -0000 Delivered-To: apmail-jakarta-poi-dev-archive@jakarta.apache.org Received: (qmail 56451 invoked by uid 500); 23 Oct 2003 17:20:34 -0000 Mailing-List: contact poi-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "POI Developers List" Reply-To: "POI Developers List" Delivered-To: mailing list poi-dev@jakarta.apache.org Received: (qmail 56438 invoked by uid 500); 23 Oct 2003 17:20:34 -0000 Received: (qmail 56435 invoked from network); 23 Oct 2003 17:20:34 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 23 Oct 2003 17:20:34 -0000 Received: (qmail 45769 invoked by uid 1575); 23 Oct 2003 17:20:41 -0000 Date: 23 Oct 2003 17:20:41 -0000 Message-ID: <20031023172041.45768.qmail@minotaur.apache.org> From: slaubach@apache.org To: jakarta-poi-cvs@apache.org Subject: cvs commit: jakarta-poi/src/documentation/content/xdocs/hssf quick-guide.xml X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N slaubach 2003/10/23 10:20:41 Modified: src/documentation/content/xdocs/hssf quick-guide.xml Log: Updated documentation so that Fix To example is named properly. Revision Changes Path 1.5 +5 -5 jakarta-poi/src/documentation/content/xdocs/hssf/quick-guide.xml Index: quick-guide.xml =================================================================== RCS file: /home/cvs/jakarta-poi/src/documentation/content/xdocs/hssf/quick-guide.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- quick-guide.xml 18 Jul 2003 12:19:26 -0000 1.4 +++ quick-guide.xml 23 Oct 2003 17:20:41 -0000 1.5 @@ -31,7 +31,7 @@
  • Reading and writing
  • Use newlines in cells.
  • Create user defined data formats.
  • -
  • Fit sheet to one page
  • +
  • Fit Sheet to One Page
  • Set print area for a sheet.
  • Set page numbers on the footer of a sheet.
  • Shift rows.
  • @@ -420,14 +420,14 @@ fileOut.close(); - -
    Set Print Area to One Page + +
    Fit Sheet to One Page HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet sheet = wb.createSheet("format sheet"); - HSSFPrintSetup ps = sheet.getPrintSetup() + HSSFPrintSetup ps = sheet.getPrintSetup(); - sheet.setAutobreaks(true) + sheet.setAutobreaks(true); ps.setFitHeight((short)1); ps.setFitWidth((short)1); --------------------------------------------------------------------- To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: poi-dev-help@jakarta.apache.org