Excel Interop to open excel with macros disabled
.net, com-interop, excel, interop
Solution
I think you can just set it on your Excel Application:
Excel.Application xapp = new Excel.Application();
xapp.AutomationSecurity = Microsoft.Office.Core.MsoAutomationSecurity.msoAutomationSecurityForceDisable;
Problem
Is there a way in C# to switch off macros in excel before loading an excel file. I am loading the excel file using Excel Interop. All I can see is solutions for VB.NET. Thanks Nishant