我正在编写一些C#代码来查看/添加/编辑Microsoft Outlook 2007中的AppointmentItems。我正在访问辅助日历(MAPIFolder),我想以编程方式更改日历的颜色。这可能吗?
答案 0 :(得分:3)
myNamespace = outLookApp.GetNamespace("MAPI");
if (myNamespace.Categories["liveMeeting"] == null)
{
myNamespace.Categories.Add("liveMeeting", OlCategoryColor.olCategoryColorDarkRed, OlCategoryShortcutKey.olCategoryShortcutKeyNone);
}
newEvent.Categories = "liveMeeting";
答案 1 :(得分:0)
Outlook中的约会是彩色的,而不是日历。颜色是根据分配给约会的类别设置的,因此我认为使用AppointmentItem.Categories可以设置应用于您创建的约会的颜色。