有没有办法编写一个办公插件来将新字段添加到 Outlook 中的新会议请求部分?例如,我想为议程添加一个新字段...
这是可行的吗?
有没有办法编写一个办公插件来将新字段添加到 Outlook 中的新会议请求部分?例如,我想为议程添加一个新字段...
这是可行的吗?
这是可行的:
为此,您应该将用户属性添加到 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();
此代码会将议程属性添加到您的会议项目。