Hi
I want to create a PDF with pages that match A4 and contain images.How do I know what size to set the ISectionPage Width / Height in order for it to match A4.
Thanks.
Hi Matt
Thanks .
There is a PageSize property on the section that you could use, i.e.:
Report report = new Report();ISection section = report.AddSection();section.PageSize = PageSizes.A4;
-Matt