Gets/Sets the flag that indicates whether to embed TrueType fonts as Type 0 font.
This option is recommended if you have non-standard fonts like
barcode font.
Note: Non-Roman fonts are always embedded as Type 0 font
regardless of this option.
Set oPrinter = CreateObject("easyPDF.Printer.5")
Set oPrintJob = oPrinter.PrintJob
Set oPDFSetting = oPrintJob.PDFSetting
oPDFSetting.FontEmbedAsType0 = True
oPDFSetting.FontEmbedding = PRN_FONT_EMBED_SUBSET
oPrintJob.PrintOut "C:\input.doc", "C:\output.pdf"