5758596061626364
assertNotNull(tr); // row has a single cell by default; grab it XWPFTableCell cell = tr.getCell(0); cell.setVerticalAlignment(XWPFVertAlign.BOTH); XWPFVertAlign al = cell.getVerticalAlignment(); assertEquals(XWPFVertAlign.BOTH, al); }
5354555657585960