Outlook添加 - 确定ItemSend事件的项类型

时间:2016-06-10 09:55:23

标签: vsto add-in

我正在尝试确定要发送的当前对象的项目类型或接口类型。例如,当我单击发送时,我希望我的程序确定按钮被单击的窗口是MailItem,会议项目还是内联响应。

任何帮助将不胜感激,非常感谢提前。

1 个答案:

答案 0 :(得分:1)

这是通过将ItemSend事件中的Item参数分配给相应的窗口类型来实现的,如下所示。

     currentMail = Item as Outlook.MailItem;
     currentAppointment = Item as Outlook.AppointmentItem;
     currentMeeting = Item as Outlook.MeetingItem;