有没有办法编写Office插件来向Outlook中的“新建会议请求”部分添加新字段?例如,我想为Agenda ...
添加一个新字段这可行吗?
答案 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 View或Custom TaskPane或Form Region