Specifies whether auto executable macros are enabled. It defaults to false, meaning disable macros. True means enable macros.
Boolean
The default value is False to avoid script errors or pop-up dialogs possibly causing the conversion to fail. If you need to run one of the above mentioned macro functions during conversion, set this property to True.
'VB Sample Code Set oPrinter = CreateObject("easyPDF.Printer.6") Set oPrintJob = oPrinter.ExcelPrintJob oPrintJob.EnableAutoMacros = True oPrintJob.PrintOut "C:\input.xls", "C:\output.pdf"