How can I set table row's height different each column in word via apache poi
问题 I want to create a table in my word document. In this table, I need something like this In this image, third row's third column has different height from first and second columns. I want to create something like this with apache poi but I don't find any solution for this. My codes is here table.getRow(6).setHeight(630); table.getRow(6).getCtRow().getTrPr().getTrHeightArray(0).setHRule(STHeightRule.EXACT); table.getRow(6).getCell(0).removeParagraph(0); //Cell0 XWPFParagraph row6Paragraph=table