嵌入式 Office 应用程序 - 如何知道应用程序是否正在运行或对象是否已嵌入
我正在 Word 中添加一个 Excel Worksheet 对象。 Excel 附加了一个 COM 插件。知道如何知道 Excel 是独立运行还是作为嵌入对象运行吗?
当嵌入的 Excel 对象在 Word 中激活(双击)时,附加到 Excel 的 COM 插件就会加载。我正在 OnConnection(...) 或其他可以告诉 Excel 对象状态的方法中寻找某种属性或参数。
I am adding an Excel Worksheet object inside Word. Excel has a COM addin attached to it. Any idea how one can know whether Excel is running independently or as an embedded object?
The COM Addin attached to Excel loads when the embedded Excel object is activated (double-clicked) inside Word. I am looking for some kind of a property or a parameter in OnConnection(...) or other method that can tell the state of Excel object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用
Application
对象的UserControl
属性。我已经很长时间没有使用这个属性了,所以我不确定它对您的具体情况有帮助。
Try the
UserControl
property of theApplication
object.It has been a long time since I had to use this property, so I am not sure it will help in your specific case.