2013-09-29 22 views

回答

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