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

AppointmentLabelCollection Class

Represents a collection of appointment labels.

Namespace: DevExpress.Web.ASPxScheduler

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

Declaration

[ListBindable(BindableSupport.No)]
public class AppointmentLabelCollection :
    UserInterfaceObjectCollection<IAppointmentLabel>,
    IAppointmentLabelStorage,
    IStorageCollection<IAppointmentLabel>,
    IEnumerable<IAppointmentLabel>,
    ICollection,
    IEnumerable,
    IDisposable

The following members accept/return AppointmentLabelCollection objects:

Remarks

The AppointmentLabelCollection represents a collection of AppointmentLabel 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 AppointmentLabelCollection class can be accessed via the ASPxAppointmentStorage.Labels property.

See Also