写办公室插件,为会议请求添加新字段

时间:2013-09-29 09:06:20

标签: plugins ms-office outlook-addin

有没有办法编写Office插件来向Outlook中的“新建会议请求”部分添加新字段?例如,我想为Agenda ...

添加一个新字段

这可行吗?

1 个答案:

答案 0 :(得分: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();

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

现在,如果您想要显示它,您应该使用Custom ViewCustom TaskPaneForm Region