Gets/Sets printer paper size.
Long
There are two ways to set a paper size into this property.
1. Use one of the values specified in prnPaperSize.
2. Use the returned value from GetPaperSize method.
Set oPrinter = CreateObject("easyPDF.Printer.6")
Set oSetting = oPrinter.PrinterSetting
oSetting.LayoutGraphicResolution = 600
oSetting.LayoutGraphicScaling = 100
oSetting.LayoutPaperOrientation = PRN_PAPER_ORIENT_LANDSCAPE
oSetting.LayoutPaperSize = PRN_PAPER_A4
oSetting.Save