diff options
author | Andrew C. Oliver <acoliver@apache.org> | 2004-11-15 22:32:00 +0000 |
---|---|---|
committer | Andrew C. Oliver <acoliver@apache.org> | 2004-11-15 22:32:00 +0000 |
commit | 8237d0930f093c6a2911d5765ab17019ed76b1ec (patch) | |
tree | d484870d43a686d95a1c55a8c71d3abfcecfaaea /src/java/org/apache/poi/hssf/usermodel | |
parent | 802ebe6435d88d712878feda559a85097ff1691e (diff) | |
download | poi-8237d0930f093c6a2911d5765ab17019ed76b1ec.tar.gz poi-8237d0930f093c6a2911d5765ab17019ed76b1ec.zip |
the zero height flag is now exposed via the usermodel -ACO
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353610 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/poi/hssf/usermodel')
-rw-r--r-- | src/java/org/apache/poi/hssf/usermodel/HSSFRow.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java b/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java index f8a33427fb..4c156e63b0 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java @@ -331,6 +331,22 @@ public class HSSFRow } /** + * 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 */ |