PDFSetting オブジェクトの解説

オブジェクトはプリントジョブに提供する為のPDF変換設定の更新と変更に使用します。

使用例


Set oPrinter = CreateObject("easyPDF.Printer.5")
Set oPrintJob = oPrinter.PrintJob
Set oPDFSetting = oPrintJob.PDFSetting

' PDF設定のSet
oPDFSetting.FontEmbedding = PRN_FONT_EMBED_SUBSET
oPDFSetting.ImageCompression = PRN_IMAGE_COMPRESS_ZIP

oPrintJob.PrintOut "C:\input.doc", "C:\output.pdf"