我需要从约会实例中为定期约会的主人设置 UserProperty。
情景是:a。用户打开定期会议/约会的实例。
湾。我的程序在约会系列的主人上设置了一个 UserProperty
使用 Parent 属性很容易获得主约会,但它是只读的。
如何获得对主约会的可修改参考?
我要执行的代码是这样的
Outlook.AppointmentItem masterAppointment = (Outlook.AppointmentItem)(currentAppointment.Parent);
masterAppointment.ItemProperties.Add("xxx", Outlook.OlUserPropertyType.olText);
masterAppointment.ItemProperties["xxx"].Value = aStringValue;
masterAppointment.Save();