IESetting Object Description

This object is used to review and modify the Internet Explorer setting.

Example Usage

' VB sample code

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

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"