How can I turn background error checking off for the Excel app object in EPPlus?
问题 Using the unwieldy and ponderous but full-featured Excel Interop, background error checking can be toggled off like so: Excel.Application excelApp = new Excel.Application(); excelApp.ErrorCheckingOptions.BackgroundChecking = false; ...as shown here I am getting the green triangles indicating a bad number like so: ...which I want to turn off. These are just string vals that should not be flagged as bad or suspicious. So how can I turn background error checking off for the Excel app object, or