ITEXT7 TABLE BORDERLESS (No Border)

2019-09-16 05:08发布

This code below does not work.

 Table table = new Table(2); 
 table.setBorder(Border.NO_BORDER);

I am new to itext7 and all I wanted is to have my table borderless. Like how to do it?

1条回答
Fickle 薄情
2楼-- · 2019-09-16 05:34

The table itself is by default not responsible for borders in iText7, the cells are. You need to set every cell to be borderless if you want a borderless table (or set the outer cells to have no border on the edge if you still want inside borders).

Cell cell = new Cell();
cell.add("contents go here");
cell.setBorder(Border.NO_BORDER);
table.addCell(cell);
查看更多
登录 后发表回答