Back to Devexpress

ISchedulerStorageBase.GetAppointments(DateTime, DateTime) Method

corelibraries-devexpress-dot-xtrascheduler-dot-ischedulerstoragebase-dot-getappointments-x28-system-dot-datetime-system-dot-datetime-x29.md

latest2.9 KB
Original Source

ISchedulerStorageBase.GetAppointments(DateTime, DateTime) Method

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

Namespace : DevExpress.XtraScheduler

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

NuGet Package : DevExpress.Scheduler.Core

Declaration

csharp
AppointmentBaseCollection GetAppointments(
    DateTime start,
    DateTime end
)
vb
Function GetAppointments(
    start As Date,
    end As Date
) As AppointmentBaseCollection

Parameters

NameTypeDescription
startDateTime

A System.DateTime value that specifies the start time of the required time interval.

| | end | DateTime |

A System.DateTime value that specifies the end time of the required time interval.

|

Returns

TypeDescription
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 returned collection.

Note

The end parameter’s value should be greater than or equal to the start parameter’s value, otherwise an exception will be thrown.

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

ISchedulerStorageBase Interface

ISchedulerStorageBase Members

DevExpress.XtraScheduler Namespace