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