I need to print a selected area of an excel sheet (which I selected with Range.Select()) using the following print settings:
Printer: Microsoft XPS Document Writer P
For the 'Fit Sheet on One Page' to work we should also set the Zoom property to false.
// Fit Sheet on One Page
_with1.FitToPagesWide = 1; _with1.FitToPagesTall = 1; _with1.Zoom = False;