Save Method

Saves all Internet Explorer setting changes.

Sub Save()


Parameters

N/A.

Return Values

N/A.

Remarks

You need to call this method to have the changes applied for the current print job. Note that method also saves the changes globally (subsequent IEPrintJob will have the same setting).

Example Usage


Set oPrinter = CreateObject("easyPDF.Printer.5")
Set oPrintJob = oPrinter.IEPrintJob
Set oIESetting = oPrintJob.IESetting

' Make changes to IE's setting
oIESetting.Footer = ""
oIESetting.Header = ""

' ...

' Save the above changes before calling PrintOut method.
oIESetting.Save

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

 

 

<<