Compartir a través de


Propiedad AppointmentItem.ReminderSet (Outlook)

Devuelve o establece un valor booleano que es True si se ha establecido un aviso para este elemento. Lectura y escritura.

Sintaxis

expresión. ReminderSet

Expresión Variable que representa un objeto AppointmentItem .

Ejemplo:

En este ejemplo se crea un elemento de cita y se establece la propiedad ReminderSet antes de guardarla.

Sub AddAppointment() 
 
 Dim apti As Outlook.AppointmentItem 
 
 
 
 Set apti = Application.CreateItem(olAppointmentItem) 
 
 apti.Subject = "Car Servicing" 
 
 apti.Start = DateAdd("n", 16, Now) 
 
 apti.End = DateAdd("n", 60, apti.Start) 
 
 apti.ReminderSet = True 
 
 apti.ReminderMinutesBeforeStart = 60 
 
 apti.Save 
 
End Sub

Consulte también

Objeto AppointmentItem

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.