Excel Interop打开excel并禁用宏

时间:2012-05-02 11:05:19

标签: .net excel interop com-interop

在加载excel文件之前,C#中是否有办法在excel中关闭宏。我正在使用Excel Interop加载excel文件。我只能看到VB.NET的解决方案。

由于  NISHANT

1 个答案:

答案 0 :(得分:19)

我认为你可以在Excel应用程序上设置它:

Excel.Application xapp = new Excel.Application();
xapp.AutomationSecurity = Microsoft.Office.Core.MsoAutomationSecurity.msoAutomationSecurityForceDisable;