mirror of https://github.com/apache/poi.git
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:
parent
802ebe6435
commit
8237d0930f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue