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

AppointmentStatusCollection Class

Represents a collection of appointment statuses.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v18.1.dll

Declaration

[ListBindable(BindableSupport.No)]
public class AppointmentStatusCollection :
    UserInterfaceObjectCollection<IAppointmentStatus>,
    IAppointmentStatusStorage,
    IStorageCollection<IAppointmentStatus>,
    IEnumerable<IAppointmentStatus>,
    ICollection,
    IEnumerable,
    IDisposable

The following members accept/return AppointmentStatusCollection objects:

Remarks

The AppointmentStatusCollection represents a collection of AppointmentStatus objects. The properties and methods declared by this class can be used to perform common collection operations, such as adding new or deleting existing items. Individual items can be accessed using indexer notation.

An instance of the AppointmentStatusCollection class can be accessed via the ASPxAppointmentStorage.Statuses property of the ASPxAppointmentStorage object.

See Also