VB - 如何获取 Outlook AppointmentItem 的类别颜色

发布于 2024-12-07 06:32:02 字数 206 浏览 2 评论 0原文

第一次来这里...

我正在编辑 OlCandr.dot 宏(将 Outlook 日历信息导入到 Word 中)并尝试获取每个约会的类别颜色。

我有 AppointmentItem 对象,appt.Categories 将返回此约会所具有的类别的字符串。但是,我不知道如何获取类别颜色。

感谢您的帮助...

干杯,

大卫

First time here...

I'm editing OlCalndr.dot macros (import Outlook Calendar info into Word) and trying to grab the category color for each appointment.

I have the AppointmentItem object, and appt.Categories will return a String of the categories this appointment has. However, I can't figure out how to get the category color.

Grateful for any help...

cheers,

David

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

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

发布评论

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

评论(1

淡看悲欢离合 2024-12-14 06:32:02

您必须从命名空间手动在类别目录中查找类别名称。

  1. 从 AppointmentItem.Categories Split 中获取类别字符串
  2. (在“,”上)。找到第一个名字。
  3. Application.Session 获取可用类别的完整集合.Categories
  4. 枚举类别,直到找到具有步骤 (2) 中的名称的类别。
  5. 此类别将具有 颜色 (来自 olCategoryColor 枚举)。

You have to manually look up the category name into the categories catalog from the Namespace.

  1. Obtain the string of categories from the AppointmentItem.Categories
  2. Split (on ','). Find the first Name.
  3. Obtain the full collection of available categories from Application.Session.Categories
  4. Enumerate through the categories until you find the one with the name from step (2).
  5. This category will have a Color (from the olCategoryColor enumeration).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文