Posts by Paulo Soares • 161 points
3 posts
-
1
votes1
answer1032
viewsA: Margin of a Document iTextPdf
The Document.setMargins() only acts on the next page. To act on the first page it is necessary to call it before the open.
-
1
votes3
answers228
viewsA: Difficulty to popular the Gridview
The Client.Person will not appear because there is no representation of the class objects. In simplistic terms the objects in the cells show the result of Tostring(). The question you can ask is…
-
1
votes1
answer171
viewsA: How to avoid reducing the width of the columns?
There is a PdfPtable.SetTotalWidth(float[] columnWidth) fixing the width of the columns in absolute values. To write only the columns that are intended per page we have…