FolderSpecifiedOutputPath Property

Gets/Sets user specified save folder location value.


Type: String

Remarks

To enable this option, you must also set the FolderDefaultOutputPath property to PRN_FOLDER_DEFAULT_SPECIFY.

This setting is not used when you use PrintJob object's PrintOut method to print a document. This setting is used only when an end-user prints from a host application's "File"->"Print" menu, and your application catches the printing request with PrinterMonitor object.

Example Usage


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

oPDFSetting.FolderDefaultOutputPath = PRN_FOLDER_DEFAULT_SPECIFY
oPDFSetting.FolderRememberOutputPath = False
oPDFSetting.FolderSpecifiedOutputPath = "C:\PDFOutput"
oPDFSetting.Save

 

 

<<