Outlook 项目的基类
我是 Outlook 对象模型的新手。我想捕获一些事件,例如选择更改事件等。我发现在选择对象中它返回 system.object。我必须对每种项目类型进行类型检查。不确定是否有更好的方法来做到这一点。
我不想每次都进行类型检查。
阿什温
I am new to Outlook object model. I want to trap some events like selectionchange events etc. What I found that in the selection object it returns the system.object. I have to do type checking for each item type. Not sure if there is any better way to do this.
I don't want to do type checking every time.
Ashwin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,outlook 邮件项目没有基类,
请查看 http://outlookitemwrapper.codeplex.com/< /a>.
您可以使用这个包装器。希望这会有所帮助
As far as I know there is no base class for outlook message item
Check this out http://outlookitemwrapper.codeplex.com/.
You can use this wrapper. Hope this would be helpful
为什么不使用后期绑定并检查 Class 属性?每个 Outlook 对象都会公开它。
Why not use late binding and check the Class property? Every Outlook object exposes it.