IESetting Property

Gets IESetting object.


Type: IESetting (read-only)

Remarks

N/A.

Example Usage


Set oPrinter = CreateObject("easyPDF.Printer.5")

Set oPrintJob = oPrinter.IEPrintJob
Set oIESetting = oPrintJob.IESetting

' Set IE specific option
oIESetting.Header = ""
oIESetting.Footer = ""

' ...

' Save changes
oIESetting.Save

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

 

 

<<