1

有没有办法编写一个办公插件来将新字段添加到 Outlook 中的新会议请求部分?例如,我想为议程添加一个新字段...

这是可行的吗?

4

1 回答 1

1

这是可行的:
为此,您应该将用户属性添加到 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();

此代码会将议程属性添加到您的会议项目。

现在,如果您想显示它,您应该使用自定义视图自定义任务窗格表单区域

于 2013-09-29T14:07:58.910 回答