1

Outlook の新しい会議出席依頼セクションに新しいフィールドを追加する Office プラグインを作成する方法はありますか? たとえば、議題の新しいフィールドを追加したい...

これは実行可能ですか?

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();

このコードは、会議アイテムに Agenda プロパティを追加します。

表示したい場合は、Custom ViewまたはCustom TaskPaneまたはForm Regionを使用する必要があります

于 2013-09-29T14:07:58.910 に答える