Android Question PDFWRITER: CHANGE THICKNESS OF LINE and RAWCONTENT

Gianni Sassanelli

Active Member
Licensed User
Longtime User
Hi,
I'm using PDF LIBRARY to make a pdf.

Is possible to change the THICKNESS of lines like the added EXAMPLE.Png file, with Addline Methods?
Where I can found all reference to send value with RawContent Methods?
Thank's
 

Attachments

  • Example.png
    Example.png
    734 bytes · Views: 181

JOTHA

Well-Known Member
Licensed User
Longtime User
I didn't find methods, but a "tricky" solution. Try this:
B4X:
    PDFWriter1.addLine(30, 30, 570, 30)
    PDFWriter1.addLine(30, 31, 570, 31)
    PDFWriter1.addLine(30, 32, 570, 32)
It works! Better than nothing ... ;)
 
Upvote 0
Top