Outlook) (MailItem.ShowCategoriesDialog 方法
顯示 [顯示類別] 對話方塊,可以用來選取與項目主旨相對應的類別。
語法
expression。 ShowCategoriesDialog
表達 代表 MailItem 物件的 變數。
範例
下列 Microsoft Visual Basic for Applications (VBA) 範例會建立新的郵件項目、在螢幕上顯示此項目,然後開啟 [顯示類別] 對話方塊。
Sub MailItem()
'Creates a mail item to access ShowCategoriesDialog
Dim olmyMailItem As Outlook.MailItem
'Create mail item
Set olmyMailItem = Application.CreateItem(olMailItem)
olmyMailItem.Body = "Can you help me with these sales figures."
olmyMailItem.Recipients.Add ("Jeff Smith")
olmyMailItem.Subject = "Sales Reports"
'Display the item
olmyMailItem.Display
'Display the Show categories dialog
olmyMailItem.ShowCategoriesDialog
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。