FolderDefaultOutputPath Property

Gets/Sets default save folder location setting.


Type: prnFolderDefault

Remarks

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

 

 

<<