0
I have a printDocument
that makes mine PDF with the sheet upright (standing) I would like to leave the sheet horizontal (lying down).
My code I use to generate the PDF:
Dim ppd As New PrintPreviewDialog
ppd.WindowState = FormWindowState.Maximized
ppd.Document = PrintDocument1
ppd.ShowDialog()
Does anyone have any idea how I leave the sheet horizontal?