如何在Itext Pdf单元格中仅显示右边和底部的单元格边框

时间:2012-08-16 05:07:50

标签: itext

我在尝试的时候 cell.setBorder(Rectangle.BOTTOM);

cell.setBorder(Rectangle.RIGHT);

重叠底部边框并仅设置所选单元格的右边框

同样的事情以相反的方式发生

cell.setBorder(Rectangle.BOTTOM);

cell.setBorder(Rectangle.RIGHT);

是否可以为选定的单元格设置单元格的底部和右侧边框?

2 个答案:

答案 0 :(得分:26)

在iTextSharp中我使用过:

cell.Border = Rectangle.BOTTOM_BORDER | Rectangle.RIGHT_BORDER;

你可以尝试:

cell.setBorder(Rectangle.BOTTOM | Rectangle.RIGHT);

答案 1 :(得分:2)

是的,Rectangle.BOTTOM = 2,Rectangle.TOP = 1,Rectangle.RIGHT = 8,Rectangle.LEFT = 4 所以对于right和bottom,请尝试使用cell.setBorder(10);,它适用于我的itext1.3