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
This commit is contained in:
Andrew C. Oliver 2004-11-15 22:32:00 +00:00
parent 72f6b11cf6
commit 8f544c6d28

View File

@ -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