Fri Dec 16, 2022 1:48 am
你好,固定列宽这个我设置了,现在是word打开没问题,但是用wps打开固定的列宽好像没生效,页面只显示一半的宽度?有办法调整吗?用layout是否好使?主要我想实现让表格自适应窗口,内容自适应表格宽度。
Section section = document.getSections().get(0);
for (int i = 0; i < table.getRows().getCount(); i++) {
TableRow row = table.getRows().get(i);
for (int j = 0; j < row.getCells().getCount(); j++) {
TableCell cell = row.getCells().get(j);
if (j == row.getCells().getCount() - 1) {
cell.setCellWidth(12f, CellWidthType.Percentage);
} else {
cell.setCellWidth(10f, CellWidthType.Percentage);
}
}
}
table.autoFit(AutoFitBehaviorType.Fixed_Column_Widths);