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
72f6b11cf6
commit
8f544c6d28
@ -330,6 +330,22 @@ public class HSSFRow
|
|||||||
row.setHeight(height);
|
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.
|
* set the row's height in points.
|
||||||
* @param height row height in points
|
* @param height row height in points
|
||||||
|
Loading…
Reference in New Issue
Block a user