Android Question How to print "wider than screen" info of a xCLV into to PDF file?

JohnC

Expert
Licensed User
Longtime User
I have a list of data that is wider (has more columns) than can fit on the screen when inserted in a xCLV, and I need to print all the columns into a PDF file.

When I try to use the clv.sv.ScrollViewInnerPanel.Snapshot method, it only includes the visible part of the data in the PDF and not the off-screen columns.

I can't figure out how to get the full row of data out of the xCLV.

Any help would be greatly appreciated.
 

Attachments

  • PDFtest.zip
    11.1 KB · Views: 219

JohnC

Expert
Licensed User
Longtime User
What's the proper way to make CLV wider?

I tried these and the only one that worked was the last method:

B4X:
clv.AsView.Width = NewWidth
clv.sv.Width = NewWidth
clv.Base_Resize(NewWidth, clv.GetBase.Height)   '<--this worked

Is that the correct method?
 
Upvote 0
Top