显示Outlook预约日历

时间:2016-05-31 13:22:22

标签: c# outlook calendar appointment

我有一个C#应用程序创建一个约会(oAppoint)并将其移动到另一个日历(交换一个,而不是我的)。当我使用func() display()时,它会显示我日历中的oAppoint对象。如何在我移动到的日历上显示约会?

oAppoint.Move(newCalFolder);
oAppoint.Save();
oAppoint.Display(); // display the appointment item at the calendar I moved it to (? how ?)

1 个答案:

答案 0 :(得分:1)

Move方法将返回一个引用已移动项目的对象,因此:

Outlook.AppointmentItem movedItem = (Outlook.AppointmentItem)oAppoint.Move(newCalFolder);
movedItem.Display();