Zoom Property

Sets printing zoom of the worksheet.


Type: Long (percent, write-only)

Remarks

The allowed value range is from 10 to 400.

Note: To set the value back to default after making modification, specify a value less than 0.

Example Usage


Set oPrinter = CreateObject("easyPDF.Printer.5")

Set oPrintJob = oPrinter.ExcelPrintJob
oPrintJob.Zoom = 75
oPrintJob.PrintOut "C:\input.xls", "C:\output.pdf"

 

 

<<