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.v23.2.Core.dll

NuGet Package: DevExpress.Scheduler.Core

Declaration

public virtual TimeSpan TimeBeforeStart { get; set; }

Property Value

Type Description
TimeSpan

A TimeSpan structure which is an interval before the appointment’s start time. Default is 15 minutes.

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 - ReminderBase.TimeBeforeStart.

TimeBeforeStart

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

Note

The default value of the TimeBeforeStart property is 15 minutes.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the TimeBeforeStart property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also