Método AppointmentItem.ShowCategoriesDialog (Outlook)
Muestra el cuadro de diálogo Mostrar categorías, que permite seleccionar las categorías correspondientes al asunto del elemento.
Sintaxis
expresión. ShowCategoriesDialog
Expresión Variable que representa un objeto AppointmentItem .
Ejemplo:
En el siguiente ejemplo de Microsoft Visual Basic para Aplicaciones (VBA), se crea un nuevo elemento de cita, se muestra dicho elemento en la pantalla y se abre el cuadro de diálogo Mostrar categorías.
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
Consulte también
Soporte técnico y comentarios
¿Tiene preguntas o comentarios sobre VBA para Office o esta documentación? Vea Soporte técnico y comentarios sobre VBA para Office para obtener ayuda sobre las formas en las que puede recibir soporte técnico y enviar comentarios.