如何设置Outlook文件夹的自定义图标?
有没有办法使用 Outlook 对象模型设置 Outlook 文件夹或子文件夹的自定义图标?
Is there any way to set a custom Icon of an Outlook folder or subfolder using Outlook object model?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 Outlook 2010 开始,您可以如上所述使用
MAPIFolder.SetCUstomIcon
。我最近遇到了同样的挑战,并在以下位置找到了一段很好的 VBA 代码片段:
可以更改 Outlook 文件夹颜色吗?:
:
As from Outlook 2010 you can use
MAPIFolder.SetCUstomIcon
as described above.I have had the same challenge recently and found a nice snippet of VBA code at
Change Outlook folders colors possible?:
and
据我所知,不幸的是,这在 Outlook 2007 中是不可能的。
在 Outlook 2010 中可以使用
MAPIFolder.SetCustomIcon
。有关详细信息,请参阅 MSDN:http://msdn.microsoft.com/en-us /library/ff184775.aspx在以下 MSDN 网页上切换 2010 年和 2007 年之间的 MAPIFolder 方法列表仅显示 2010 年的
SetCustomIcon
方法:http://msdn.microsoft.com/en-us/library/bb645002.aspxFrom what I have read this is unfortunately not possible in Outlook 2007.
It is possible in Outlook 2010 using
MAPIFolder.SetCustomIcon
. See MSDN for more details: http://msdn.microsoft.com/en-us/library/ff184775.aspxSwitching the list of MAPIFolder methods between 2010 and 2007 on the following MSDN webpage shows the
SetCustomIcon
method for 2010 only: http://msdn.microsoft.com/en-us/library/bb645002.aspx