Skip to main content

ReminderBase.TimeBeforeStart Property

Gets or sets the time interval before the appointment's start time.

Namespace: DevExpress.XtraScheduler

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

#Declaration

public virtual TimeSpan TimeBeforeStart { get; set; }

#Property Value

Type Description
TimeSpan

A TimeSpan structure which specifies an interval before the appointment's start time.

#Remarks

Use the TimeBeforeStart property to specify a period of time before the appointment's start when you should be reminded. The alert time is calculated using the following formula: ReminderBase.AlertTime = Appointment.Start - TimeBeforeStart.

ReminderBase_AlertTime_TimeBeforeStart

Changing the TimeBeforeStart property's value raises the ReminderBase.RemindTimeChanged event.

See Also