I need your help to print PDF file in duplex setting (both side printing) using C#, My printer does support this feature I just need to know how I can print using C#?
So far I use print settings as shown in the below code but it did not work.
PrinterSettings set = new PrinterSettings();
set.PrinterName = comboBox1.Text;
set.Duplex = Duplex.Vertical;
ProcessStartInfo info = new ProcessStartInfo(Path.Combine(RootPath, "test.pdf"));
info.Verb = "print";
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(info);