各変換後に以前のセーブフォルダロケーションを記憶する機能を有効/無効にする。
ブール型
ドキュメントをプリントするためにPritntJob オブジェクトのPrintOut メソッドを使用する際、この設定は使用されません。この設定はエンドユーザーがホストアプリケーションの"File"→"Print" メニューからプリントするとき、またはお使いのアプリケーションがPrinterMonitor オブジェクトでプリントリクエストを得たときにのみ使用されます。
Set oPrinter = CreateObject("easyPDF.Printer.6")
Set oPrintJob = oPrinter.PrintJob
Set oPDFSetting = oPrintJob.PDFSetting
oPDFSetting.FolderDefaultOutputPath = PRN_FOLDER_DEFAULT_SPECIFY
oPDFSetting.FolderRememberOutputPath = False
oPDFSetting.FolderSpecifiedOutputPath = "C:\PDFOutput"
oPDFSetting.Save