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

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetAppointments(TimeInterval) method.

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