TaskItem.ShowCategoriesDialog 方法 (Outlook)

显示“显示类别”对话框,用户可从中选择与项目主题相对应的类别。

语法

expressionShowCategoriesDialog

表达 一个代表 TaskItem 对象的变量。

示例

以下 Microsoft Visual Basic for Applications (VBA) 示例创建新的任务项目,将项目显示在屏幕上,并打开“显示类别”对话框。

Sub TaskItem() 
 
 'Creates a task item to access ShowCategoriesDialog 
 
 Dim olmyTaskItem As Outlook.TaskItem 
 
 'Create task item 
 
 Set olmyTaskItem = Application.CreateItem(olTaskItem) 
 
 
 
 olmyTaskItem.Subject = "Sales Reports" 
 
 'Display the item 
 
 olmyTaskItem.Display 
 
 'Display the Show categories dialog 
 
 olmyTaskItem.ShowCategoriesDialog 
 
End Sub

另请参阅

TaskItem 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。