iText_forum wrote:
> Hi,
>
> I understand that in higher resolution width diffrence is not prominent.
Hey, you didn't tell us you were using empty cells using border
definitions that are different from the cells that have content!
> Please suggest some way for implementing rowspan in iText so t
Hi,
I understand that in higher resolution width diffrence is not prominent.
I've attached file which shows thickness difference in lower resoltion.
Is there any way to resolve this width difference in all resolution.
Please suggest some way for implementing rowspan in iText so that we can
resol
iText_forum wrote:
> Difference in border width is prominent but in print , width is same for
> all.
> Please suggest what can be done to correct this.
Look at the PDF on a computer with a better resolution.
If you zoom in on the borders, you'll see there's no difference.
This isn't a problem! If
Hi,
I've updated to setBorder method of rectangle to enable or disable borders.
Below is the code snippet used to disable top border:-
style.getRectangle().setBorder(Rectangle.NO_BORDER);
style.getRectangle().enableBorderSide(Rectangle.LEFT);
style.getRectangle().enableBorderSide(Rectangle.RIGHT
iText_forum wrote:
> Hi,
>
> I've applied style on cell by setting border top and border width aer width
> as s 0 as
>
> style.getRectangle().setColumnWidthTop(0).
It's better to remove the border with setBorder() then to set the width
to 0. Different devices will show a border anyway.
> It se
Hi,
I've applied style on cell by setting border top and border width aer width
as s 0 as
style.getRectangle().setColumnWidthTop(0).
It sets top border width as 0.
In PDF view , width of left and right border seems to be double of
specified width but in print it is correct.
Please suggest wh