Setting the Properties of the Default Printer in windows through C#
I want to change the settings of Default printer in C#(e.g Copi开发者_运维百科es,Page Size,From - To Pages etc.)
You're going to want to check out the documentation on the PrinterSettings Class. This class has properties for Copies, Paper Sizes, and Print Range, (the settings you specified) among many others.
The System.Drawing.Printing Namespace page also provides a decent amount of information related to printing.
精彩评论