ITEXT7 TABLE BORDERLESS (No Border)

混江龙づ霸主 提交于 2019-12-25 07:35:53

问题


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:


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);


来源:https://stackoverflow.com/questions/41607891/itext7-table-borderless-no-border

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!