Trying to set row heigth of a table with code like this: int twipsPerInch = 1440; tableRowTwo.setHeight((int)(twipsPerInch*1/10)); //set height 1/10 inch. tableRowTwo.getCtRow().getTrPr().getTrHeightArray(0).setHRule(STHeightRule.EXACT); The complier can't find the class STHeightRule.class If we get into the jar contents (poi-ooxml-schemas-3.17.jar) the STHeightRule.Enum.class appears but the STHeightRule.class doesn't
As per http://poi.apache.org/faq.html#faq-N10025 , could you please write a short junit unit test that uses the height rule, so the extra schema class will get auto-included in future?
Added some simple unit tests for 4.0.0 via r1828180 which will cause this classes to be included in the poi-ooxml-schemas jar file.