在使用中總管中顯示選取的專案
此範例示範如何使用 OutlookItem 協助程式類別,以方便地顯示在使用中 Explorer 視窗中選取的所有專案。
範例
注意事項
下列程式代碼範例是 Microsoft Office Outlook 2007 程式設計應用程式的摘錄。
Selection 物件包含目前在使用中 Outlook 總管中選取的一組 Outlook 專案。 ActiveExplorer 所代表的使用中總管 () ,或選取的專案集都無法指出所選取項目的類型。 一般而言,您必須先識別專案類型,然後呼叫該類型的特定 Display 方法。 因為 Display 方法是所有 Outlook 項目物件通用的,而且 OutlookItem 協助程式類別包含這個方法,所以您可以藉由宣告 OutlookItem 物件、myItem 的實例,以及使用 myItem.Display 來顯示選取範圍中的每個專案,來利用協助程序類別。 您可以在建立協助程式類別以存取一般 Outlook 項目成員中看到 OutlookItem 協助程式類別的實作
If you use Visual Studio to test this code example, you must first add a reference to the Microsoft Outlook 15.0 Object Library component and specify the Outlook variable when you import the Microsoft.Office.Interop.Outlook namespace. The using statement must not occur directly before the functions in the code example but must be added before the public Class declaration. The following line of code shows how to do the import and assignment in C#.
using Outlook = Microsoft.Office.Interop.Outlook;
private void DisplaySelectedItems()
{
Outlook.Selection selection =
Application.ActiveExplorer().Selection;
for (int i = 1; i <= selection.Count; i++)
{
OutlookItem myItem = new OutlookItem(selection[i]);
myItem.Display();
}
}