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

AppointmentViewInfo.Interval Property

Gets or sets the time interval of the time cells covered by the appointment.

Namespace: DevExpress.Xpf.Scheduler.Drawing

Assembly: DevExpress.Xpf.Scheduler.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Scheduler, DevExpress.Wpf.Scheduler

Declaration

public TimeInterval Interval { get; set; }

Property Value

Type Description
TimeInterval

A TimeInterval object representing the time range of the time cells.

Remarks

Important

You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.

If an appointment lasts several days, visually it can be divided into several parts - one for each day. In this case, each appointment part is represented by a particular AppointmentViewInfo object. The Interval property specifies the time interval of the time cells covered by the appointment on a particular day. The AppointmentViewInfo.AppointmentInterval property specifies the time interval of the whole appointment.

For example, an appointment starts on one day and finishes on another, but does not last a whole day. This appointment will be divided into two parts to be displayed in the Day View.

DXScheduler_DayView_AppointmentViewInfoObjects

Two parts of the appointment will be represented by two different AppointmentViewInfo objects (AppointmentViewInfoObject1 and AppointmentViewInfoObject2).

The AppointmentViewInfo Object The Interval Property Value The AppointmentViewInfo.AppointmentInterval Property Value
AppointmentViewInfoObject1 (7/13/2011 8:00:00 AM)-(7/14/2011 12:00:00 AM) [16:00:00] (7/13/2011 8:00:00 AM)-(7/14/2011 7:00:00 AM) [23:00:00]
AppointmentViewInfoObject2 (7/14/2011 12:00:00 AM)-(7/14/2011 7:00:00 AM) [07:00:00] (7/13/2011 8:00:00 AM)-(7/14/2011 7:00:00 AM) [23:00:00]
See Also