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

ISchedulerStorageBase.GetAppointments(TimeInterval) Method

Retrieves the collection of appointments that fall within the specified time interval.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v22.1.Core.dll

NuGet Package: DevExpress.Scheduler.Core

Declaration

AppointmentBaseCollection GetAppointments(
    TimeInterval interval
)

Parameters

Name Type Description
interval TimeInterval

A TimeInterval object which contains the required time interval.

Returns

Type Description
AppointmentBaseCollection

An AppointmentBaseCollection collection of appointments which belong to the specified time interval.

Remarks

The GetAppointments method returns appointments of any type (regular appointments, recurring appointments and exceptions) that belong to the specified time interval. If an appointment’s time interval partially overlaps the specified interval, this appointment is also included in the collection returned.

The GetAppointments method gets appointments contained in the storage and passed through filters. Appointment filters are the AppointmentStorageBase.Filter property and the SchedulerStorageBase.FilterAppointment event.

See Also