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

ReminderBase.TimeBeforeStart Property

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

Namespace: DevExpress.XtraScheduler

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

NuGet Packages: DevExpress.Scheduler.Core, DevExpress.WindowsDesktop.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 snippets (auto-collected from DevExpress Examples) contain references 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