打开约会实例时,我需要获取会议系列的主约会。
我已经尝试了以下(currentAppointment 变量是 AppointmentItem 类型)
DateTime sd = currentAppointment.GetRecurrencePattern().PatternStartDate;
DateTime st = currentAppointment.GetRecurrencePattern().StartTime;
AppointmentItem ai = currentAppointment.GetRecurrencePattern().GetOccurrence(sd+st.TimeOfDay);
然而,虽然这让我获得了该系列中的第一个约会,但它的 RecurrenceState 为 olApptOccurrence。
如何获得对 olApptMaster 的参考 - 即会议系列?