我正在尝试确定要发送的当前对象的项目类型或接口类型。例如,当我单击发送时,我希望我的程序确定按钮被单击的窗口是MailItem,会议项目还是内联响应。
任何帮助将不胜感激,非常感谢提前。
答案 0 :(得分:1)
这是通过将ItemSend事件中的Item参数分配给相应的窗口类型来实现的,如下所示。
currentMail = Item as Outlook.MailItem;
currentAppointment = Item as Outlook.AppointmentItem;
currentMeeting = Item as Outlook.MeetingItem;