You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by ac...@apache.org on 2004/11/15 23:32:00 UTC

cvs commit: jakarta-poi/src/java/org/apache/poi/hssf/usermodel HSSFRow.java

acoliver    2004/11/15 14:32:00

  Modified:    src/java/org/apache/poi/hssf/usermodel HSSFRow.java
  Log:
  the zero height flag is now exposed via the usermodel -ACO
  
  Revision  Changes    Path
  1.18      +16 -0     jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java
  
  Index: HSSFRow.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- HSSFRow.java	14 Oct 2004 03:38:20 -0000	1.17
  +++ HSSFRow.java	15 Nov 2004 22:32:00 -0000	1.18
  @@ -331,6 +331,22 @@
       }
   
       /**
  +     * set whether or not to display this row with 0 height
  +     * @param zHeight  height is zero or not.
  +     */
  +    public void setZeroHeight(boolean zHeight) {
  +        row.setZeroHeight(zHeight);
  +    }
  +  
  +    /**
  +     * get whether or not to display this row with 0 height
  +     * @return - zHeight height is zero or not.
  +     */
  +    public boolean getZeroHeight() {
  +        return row.getZeroHeight();
  +    }
  +
  +    /**
        * set the row's height in points.
        * @param height  row height in points
        */
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: poi-dev-help@jakarta.apache.org