I'm using the https://www.b4x.com/android/forum/threads/printing-and-pdf-creation.76712/ library to send a PDF to a printer.
Is there a way to also send/set the paper size and orientation?
B4X:
Dim aPrinter As Printer
aPrinter.Initialize("")
'My page in PDF is A4 landscape but is not picked up by the printer
If aPrinter.PrintSupported Then aPrinter.PrintPdf("Print job", File.DirDefaultExternal, "print_job.pdf")
Is there a way to also send/set the paper size and orientation?