VSTO:方法之间的歧义

发布于 2024-11-15 23:40:27 字数 425 浏览 1 评论 0原文

I found the answer here. However, I can't find _Application nor _Document with reference to Microsoft.Office.Interop.Word. I did using Word = Microsoft.Office.Interop.Word; then I tried to look up _Document and _Application but all I can find is Document and Application. I believe the Document interface inherited _Document and DocumentEvents2. Does anyone know how to solve this pesky warning? edit: this is for Office 2010 and I'm using the version 14 Interop.Word

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与酒说心事 2024-11-22 23:40:27

Word 不是我的领域,但一般来说,当接口 (Word) 实现两个接口,每个接口都有一个类似的调用方法时,会出现此消息。为了避免出现警告,您需要专门转换到您感兴趣的底层接口。
有一个 Worksheet.Activate() 的说明(Excel 中的等效问题)此处

Word is not my area, but in general this message appears when an interface (Word) implements two interfaces, each having a similarly called method. To avoid the warning, you need to cast specifically to the underlying interface you are interested in.
There is an illustration with Worksheet.Activate() (an equivalent problem in Excel) here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文