在加载excel文件之前,C#中是否有办法在excel中关闭宏。我正在使用Excel Interop加载excel文件。我只能看到VB.NET的解决方案。
由于 NISHANT
答案 0 :(得分:19)
我认为你可以在Excel应用程序上设置它:
Excel.Application xapp = new Excel.Application();
xapp.AutomationSecurity = Microsoft.Office.Core.MsoAutomationSecurity.msoAutomationSecurityForceDisable;