A Anastasios Michaelides Member Licensed User Longtime User Jul 7, 2018 #1 Hello I am trying to print the contents of a tableview but i have problem. This code only prints the visible part of the tableview: B4X: Dim PJ As PrinterJob = PrinterJob_Static.CreatePrinterJob PJ.ShowPageSetupDialog(Null) PJ.ShowPrintDialog(Null) PJ.PrintPage(TableView1) PJ.EndJob
Hello I am trying to print the contents of a tableview but i have problem. This code only prints the visible part of the tableview: B4X: Dim PJ As PrinterJob = PrinterJob_Static.CreatePrinterJob PJ.ShowPageSetupDialog(Null) PJ.ShowPrintDialog(Null) PJ.PrintPage(TableView1) PJ.EndJob
stevel05 Expert Licensed User Longtime User Jul 7, 2018 #2 The JavaFX print routine will print what is visible in the view. To print a full page, you will need to manipulate the view to display the size you want. Or use a second view. Upvote 0
The JavaFX print routine will print what is visible in the view. To print a full page, you will need to manipulate the view to display the size you want. Or use a second view.
A Anastasios Michaelides Member Licensed User Longtime User Jul 10, 2018 #3 Hello, is there another way to print tableview? Upvote 0
stevel05 Expert Licensed User Longtime User Jul 10, 2018 #4 You could always create a report from the data : https://www.b4x.com/android/forum/threads/b4j-report-writer.64090/ Upvote 0
You could always create a report from the data : https://www.b4x.com/android/forum/threads/b4j-report-writer.64090/