如何识别 MS Excel 对象类型?

发布于 2024-11-06 20:47:44 字数 145 浏览 2 评论 0原文

我正在使用后期绑定 OLE 自动化来处理 Excel。问题是我不知道如何使用 Selection 返回的值,因为我不知道它是什么类型......

我如何确定它返回给我的对象类型?我希望有一个类型名称......

或者我必须遍历我期望的值列表吗?

I'm using late binding OLE automation to work with Excel. The problem is that I don't know how to work with the value returned by Selection because I don't know what type it is...

How can I determine what kind of object it has returned to me? I'd hope for a type name....

Or must I run through a list of values I'm expecting?

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

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

发布评论

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

评论(1

雨落星ぅ辰 2024-11-13 20:47:44

您可以将对象转换为 IDispatch,调用 GetTypeInfo() 方法来获取 ITypeInfo 接口,然后您可以调用 GetDocumentation( ) 方法,使用 memid=MEMBERID_NIL 来获取名称。

You can cast the object to IDispatch call the GetTypeInfo() method to get a ITypeInfo interface and there you can call the GetDocumentation() method with memid=MEMBERID_NIL to get the name.

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