java - How to modify PdfPCell so that you can remove a part of a border (e.g BOTTOM, TOP, LEFT)? -
here example of code:
pdfpcell row6cell_1 = new pdfpcell(row6par_1); row6cell_1.setborder(rectangle.no_border); row6cell_1.setborder(rectangle.left); row6cell_1.setborder(rectangle.top); row6cell_1.setborder(rectangle.bottom); row6cell_1.setborderwidth(1.0f);
i want modify border of cell right border line of cell not appear. can me this? thank you.
you can try this: removing bottom border only.
cell = new pdfpcell(new phrase("001")); cell.setborder(rectangle.top | rectangle.right | rectangle.left);
Comments
Post a Comment