This object is a specialized version of PDFSetting object. In
addition to all the features from PDFSetting
object, PrinterSetting object includes numerous printer
specific features.
If you need to set options globally, use this specialized object
instead of the PDFSetting object which is designed more for
changing options for individual print job.
Set oPrinter = CreateObject("easyPDF.Printer.5")
Set oSetting = oPrinter.PrinterSetting
oSetting.LayoutPaperSize = PRN_PAPER_A4
oSetting.LayoutPaperOrientation = PRN_PAPER_ORIENT_LANDSCAPE
oSetting.FontEmbedding = PRN_FONT_EMBED_NONE
oSetting.Save