Appointment.Reminder Property

Definition

Gets or sets a time span value. The value declares the amount of time to subtract from the StartTime, and that time used as the issue time for a reminder for an appointment. A null value indicates that the appointment will not issue a reminder. Reminder is of type IReference(TimeSpan).

public:
 property IReference<TimeSpan> ^ Reminder { IReference<TimeSpan> ^ get(); void set(IReference<TimeSpan> ^ value); };
IReference<TimeSpan> Reminder();

void Reminder(IReference<TimeSpan> value);
public System.Nullable<System.TimeSpan> Reminder { get; set; }
var iReference = appointment.reminder;
appointment.reminder = iReference;
Public Property Reminder As Nullable(Of TimeSpan)

Property Value

A time span value, or null to issue no reminder.

Windows requirements

App capabilities
appointmentsSystem

Remarks

This property uses a time span value, which is represented differently depending on which language you are programming with. For more information about how to use a time span value, see the Duration property.

Applies to