Gets the IEExtendedSetting object.
IEExtendedSetting (read-only)
All properties within IEExtendedSetting are global. They apply to every Internet Explorer print job, not just the current document. It is required that you call the Save method before you call PrintOut.
Set oPrinter = CreateObject("easyPDF.Printer.6")
Set oPrintJob = oPrinter.IEPrintJob
Set oIESetting = oPrintJob.IEExtendedSetting
' Set IE specific option
oIESetting.DisableScriptDebugger = true
oIESetting.DisplayErrorDialogOnEveryError = false
' Save changes
oIESetting.Save
oPrintJob.PrintOut "C:\input.htm", "C:\output.pdf"