Determines whether to resume conversion if IE browser fails to render HTML or URL.
Boolean
A value of True means that conversion will still continue when IE browser fails to render HTML or URL. Please use it carefully and it's at your own risk.
'VB Sample Code Set oPrinter = CreateObject("easyPDF.Printer.6") Set oPrintJob = oPrinter.IEPrintJob oPrintJob.PageWidth = 8.5 oPrintJob.PageHeight = 11.0 oPrintJob.ResumeOnError = True oPrintJob.PrintOut "C:\input.htm", "C:\output.pdf"