是否有方法编写office插件以向Outlook中的“新会议请求”部分添加新字段?例如,我想为议程增加一个新的领域.
这可行吗?
发布于 2013-09-29 14:07:58
它是可行的:
为此,您应该将用户属性添加到Outlook.MeetingItem中:
Outlook.MeetingItem item = //get or create your item here;
if(item.UserProperties["Agenda"] == null){
Outlook.UserProperty property = item.UserProperties.Add("Agenda", olText);
}
property.value = "Your agenda";
item.Save();此代码将向会议项添加议程属性。
现在,如果您想要显示它,您应该使用自定义视图、自定义TaskPane或形态区域
https://stackoverflow.com/questions/19076256
复制相似问题