PostItem.ShowCategoriesDialog 方法 (Outlook)
显示“显示类别”对话框,用户可从中选择与项目主题相对应的类别。
语法
expression。 ShowCategoriesDialog
表达 一个代表 PostItem 对象的变量。
示例
以下 Microsoft Visual Basic for Applications (VBA) 示例创建新的投递项目,将项目显示在屏幕上,并打开“显示类别”对话框。
Sub PostItem()
'Creates a post item to access ShowCategoriesDialog
Dim olmyPostItem As Outlook.PostItem
'Create post item
Set olmyPostItem = Application.CreateItem(olPostItem)
olmyPostItem.Body = "Please comment on these sales figures."
olmyPostItem.Subject = "Sales Reports"
'Display the item
olmyPostItem.Display
'Display the Show categories dialog
olmyPostItem.ShowCategoriesDialog
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。