Outlook) (AppointmentItem.Categories 属性
返回或设置一个 字符串 ,表示分配给 Outlook 项目的类别。 读/写。
语法
expression。 Categories
表达 一个代表 AppointmentItem 对象的变量。
备注
类别 是已分配给某个 Outlook 项目的类别名称的分隔符的字符串。 此属性使用值名称, sList 下 HKEY_CURRENT_USER\Control Panel\International 在 Windows 注册表中,, 指定为多个类别的分隔符的字符。 要将类别名称的字符串转换为数组的类别名称,请使用 Microsoft Visual Basic 函数 拆分 。
示例
以下 Microsoft Visual Basic for Applications (VBA) 示例创建一个新约会,在屏幕上显示该约会,并打开 "显示类别" 对话框。 最后显示用户使用 AppointmentItem.ShowCategoriesDialog 分配的类别。 运行本示例之前,请用有效的收件人姓名替换"Dan Wilson"。
Sub Appointment()
'Creates an appointment to access ShowCategoriesDialog
Dim olApptItem As Outlook.AppointmentItem
'Creates appointment item
Set olApptItem = Application.CreateItem(olAppointmentItem)
olApptItem.Body = "Please meet with me regarding these sales figures."
olApptItem.Recipients.Add ("Dan Wilson")
olApptItem.Subject = "Sales Reports"
'Display the appointment
olApptItem.Display
'Display the Show Categories dialog box
olApptItem.ShowCategoriesDialog
MsgBox olApptItem.Categories
End Sub
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。