excel interop - 如何运行 excel com 加载项代码
我有一个我创建的 Excel 插件。 我想要做的是在 C# (ASP.NET) 中打开 Excel 文档并在加载项中运行一些代码,然后将 Excel 文档作为 html 页面返回。
这可以做到吗?
I have an excel add-in i created.
What i want to do is to open an excel document in c# (ASP.NET) and run some code in the add-in and then return the excel document as an html page.
Can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Com 加载项中,我必须添加:
您应该从此函数返回一个对象,该对象稍后可以在互操作中使用,如下面的代码片段所示。添加您想要公开给该对象的任何功能。
然后按如下方式使用插件:
如您所见,我还没有找到一种识别我的插件的好方法(如果有人知道我想听到的),但您可以迭代它们并检查 progId。
addin.Object
是我们从RequestComAddInAutomationService
返回的对象。In the Com add-in i had to add:
You should return an object from this function, this object can later be used in interop as in the code snippet below. add any functionality you want to expose to this object.
Then use the addin as follows:
As you can see i have not found a good way of identifying my add-in (if anybody knows of one i would like to hear), but you can iterate over them and check the progId.
addin.Object
is the object we returned fromRequestComAddInAutomationService
.