Home > Software design >  Hide the border for cell in table using Aspose java
Hide the border for cell in table using Aspose java

Time:08-19

We have inserted the page numbers and footer text in the Footer using table but we want to hide the cell border for the table.

enter link description here

CodePudding user response:

You should simply set line style of the cell borders to none:

builder.getCellFormat().getBorders().setLineStyle(LineStyle.NONE);

In this case borders will not be visible.

  • Related