我在尝试的时候
cell.setBorder(Rectangle.BOTTOM);
cell.setBorder(Rectangle.RIGHT);
重叠底部边框并仅设置所选单元格的右边框
同样的事情以相反的方式发生
cell.setBorder(Rectangle.BOTTOM);
cell.setBorder(Rectangle.RIGHT);
是否可以为选定的单元格设置单元格的底部和右侧边框?
答案 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