Google/Bing didnt bring up any solution to my following problem, hope someone can help me:
We have to print various PDF files in our C# based program. Before we can print, we have to configure the printer, e.g. setting the orientation to landscape.
I tried to change the default printer settings e.g. like this:
PrinterSettings settings = new PrinterSettings();
settings.PrinterName = "\\\\SomeNetworkPrinter\\";
settings.DefaultPageSettings.Landscape = true;
settings.Duplex = Duplex.Horizontal;
We send the PDF to the printer via PDFSharp, which basically works, but my settings are completly ignored. Isn’t it possible to change the default printer settings this way? Do we have any chance to change the settings and print our PDF-files?
Thank you very much in advance!
To answer my own question …
After 3 days of trial and error I dont think there is any chance to configure the printer via .NET and print PDFs afterwards. You cant use the System.Drawing.Printing.PrintDocument class in combination with PDFs, but using PrintDocument seems to be a prerequisit to change the printer settings.
My solution to configure the printer was inspired by this post on codeplex: http://www.codeproject.com/KB/dotnet/NET_Printer_Library.aspx
To finally print the pdf I send it via commandline parameters to Adobe Reader.