Skip to main content
A newer version of this page is available. .

ReminderItem.AlertTime Property

Gets or sets the date and time for firing an alert.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v21.2.dll

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public DateTime AlertTime { get; set; }

Property Value

Type Description
DateTime

A DateTime object which specifies the reminder’s alert time.

Remarks

When the time specified by the AlertTime property arrives, the reminder is added to the SchedulerControl.TriggeredReminders collection, the SchedulerControl.RemindersWindowShowing event occurs and the Recurrence Window dialog is invoked.

Default value of the AlertTime property is calculated as follows:

ReminderItem.AlertTime = AppointmentItem.Start - ReminderItem.TimeBeforeStart.

You can set the AlertTime value explicitly in code. In this situation, the ReminderItem.TimeBeforeStart value remains unchanged and the formula does not apply.

Note

The ReminderItem.AlertTime value determines when to fire an alert. The ReminderItem.TimeBeforeStart value is displayed and set in the Recurrence Window dialog.

Example

View Example

// Remove previous reminders
appointment.Reminders.Clear();
// Set multiple reminders for an appointment
ReminderItem reminder1 = appointment.CreateNewReminder();
ReminderItem reminder2 = appointment.CreateNewReminder();
reminder1.AlertTime = DateTime.Now.AddMinutes(15);
reminder2.TimeBeforeStart = new TimeSpan(0, 30, 0);

appointment.Reminders.Add(reminder1);
appointment.Reminders.Add(reminder2);
See Also