diff --git a/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java b/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java index f8a33427f..4c156e63b 100644 --- a/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java +++ b/src/java/org/apache/poi/hssf/usermodel/HSSFRow.java @@ -330,6 +330,22 @@ public class HSSFRow row.setHeight(height); } + /** + * 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