I am exporting a grid into a pdf file. But when I view the print screen the grid is half the size of the paper and the font is really tiny. I have over 100 pages when it should only be around 40. How do I make the print out look like what it does in PDF. I put down landscape in my code.
this.ExportSettings.Pdf.PageHeight = Unit.Parse("162mm");
this.ExportSettings.Pdf.PageWidth = Unit.Parse("600mm");
e.Item.Style[
"font-size"] = "9px";
Is there something I need to do to make it fit to the correct paper size?
Thanks,