下面的代码不起作用。
Table table = new Table(2); table.setBorder(Border.NO_BORDER);
我是itext7的新手,我想要做的就是让我的桌子无边界。喜欢怎么做?
默认情况下,表格本身不负责iText7中的边框,而单元格则负责。如果要使用无边界表,则需要将每个单元格设置为无边界(或者,如果仍要在内部边界内,请将外部单元格的边缘设置为无边界)。
Cell cell = new Cell(); cell.add("contents go here"); cell.setBorder(Border.NO_BORDER); table.addCell(cell);