Skip to main content

Appointment.HasReminder Property

Gets or sets a value that indicates whether one or more reminders are associated with the appointment.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v14.2.Core.dll

#Declaration

[DefaultValue(false)]
public bool HasReminder { get; set; }

#Property Value

Type Default Description
Boolean

false

true if the appointment has at least one reminder; otherwise false.

#Remarks

The HasReminder property can be used to ensure whether the appointment has an associated reminder(s) (which can be accessed via the Appointment.Reminder property.) Once this property is set to true, a new Reminder object is created and assigned to the Appointment.Reminder property.

See Also