c# 使用事件处理程序WorkbookOpen
我正在编写一个 Excel 加载项,我想在打开工作簿时执行某些代码。这意味着,如果他们打开 Excel,然后打开工作簿,加载项将执行代码。
我假设我们必须使用事件处理程序: Application.WokbookOpen
但我不知道如何应用它。
谢谢你!
I am programming an excel add-in and I want to execute certain code when a workbook is opened. This means that if they open excel and then open a workbook, the add-in will execute the code.
I am assuming we have to use the event handler:
Application.WokbookOpen
But I do not know how to apply this.
Thank You!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其添加到
InternalStartUp()
中,然后打开工作簿时将调用该函数。
此外,它隐藏在
ThisAddIn 中的
。#region VSTO 生成代码
中。默认情况下为.csAdd this to
InternalStartUp()
And then this function will be called when the workbook is opened
Also, it is hidden in the
#region VSTO generated code
inThisAddIn.cs
by default.