Plugins 编写office插件向会议请求添加新字段

Plugins 编写office插件向会议请求添加新字段,plugins,ms-office,outlook-addin,Plugins,Ms Office,Outlook Addin,是否有方法编写office插件,将新字段添加到Outlook中的“新会议请求”部分?例如,我想为议程添加一个新字段 这可行吗?可行: 为此,应将用户属性添加到Outlook.MeetingItem: Outlook.MeetingItem item = //get or create your item here; if(item.UserProperties["Agenda"] == null){ Outlook.UserProperty property = item.User

是否有方法编写office插件,将新字段添加到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();
此代码将向会议项目添加议程属性

现在,如果您想显示它,您应该使用或,这是可行的:
为此,应将用户属性添加到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();
此代码将向会议项目添加议程属性


现在,如果您想显示它,您应该选择或

,问题是该数据是否也将发送到接收邮件的客户端?可能不是,或者?问题是这些数据是否也会发送到接收邮件的客户端?也许不是,或者?