MailItem.ShowCategoriesDialog 方法 (Outlook)
显示“显示类别”对话框,用户可从中选择与项目主题相对应的类别。
语法
expression。 ShowCategoriesDialog
expression 表示 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 支持和反馈,获取有关如何接收支持和提供反馈的指南。