when I try cell.setBorder(Rectangle.BOTTOM);
cell.setBorder(Rectangle.RIGHT);
It overlaps the bottom border and sets only the right border of the selected cell
The same thing happened in reverse with
cell.setBorder(Rectangle.BOTTOM);
cell.setBorder(Rectangle.RIGHT);
Can I set the bottom and right borders of a cell together for a selected cell?
user1409935
source share