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

ISchedulerStorageBase.GetAppointments(TimeIntervalCollection) Method

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

Namespace: DevExpress.XtraScheduler

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

Declaration

AppointmentBaseCollection GetAppointments(
    TimeIntervalCollection intervals
)

Parameters

Name Type Description
intervals TimeIntervalCollection

A TimeInterval object which contains the required time intervals.

Returns

Type Description
AppointmentBaseCollection

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

Remarks

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

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