Returns or sets the amount of time a reminder occurs before the start of an Appointment.
The amount of time a reminder occurs before the start of an Appointment in minutes.
The ReminderMinutesBeforeStart property must be 45 days or fewer.
This property must also be less than the period of a recurring Appointment.
The default for this is the user setting in the Calendar Options dialog box.

mytask = new Appointment() mytask.Subject = "Reminder Test" 'set appointment to start 1st February 2003 at 1pm mytask.Start = New DateTime(2003, 2, 1, 13, 0, 0) 'set reminder to 2 hours before the start time mytask.ReminderMinutesBeforeStart = 120 mytask.Update()
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | ReminderMinutesBeforeStart property must be less than 45 days. |