(Outlook) 的 DistListItem.ShowCategoriesDialog 方法
顯示 [顯示類別] 對話方塊,可以用來選取與項目主旨相對應的類別。
語法
expression。 ShowCategoriesDialog
表達 代表 DistListItem 物件的 變數。
範例
下列 Microsoft Visual Basic for Applications (VBA) 範例會建立新的通訊群組清單項目、在螢幕上顯示此項目,然後開啟 [顯示類別] 對話方塊。
Sub Appointment()
'Creates an distribution list item to access ShowCategoriesDialog
Dim olDistListItem As Outlook.DistListItem
'Create distribution list item
Set olDistListItem = Application.CreateItem(olDistributionListItem)
'Display the item
olDistListItem.Display
'Display the Show categories dialog
olDistListItem.ShowCategoriesDialog
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。