AppointmentLabelCollection Class
A collection of appointment labels.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v24.2.dll
NuGet Package: DevExpress.Wpf.Scheduler
Declaration
public class AppointmentLabelCollection :
UserInterfaceObjectCollection<IAppointmentLabel>,
IAppointmentLabelStorage,
IStorageCollection<IAppointmentLabel>,
IEnumerable<IAppointmentLabel>,
IEnumerable,
ICollection,
IDisposable
Related API Members
The following members return AppointmentLabelCollection objects:
Remarks
Important
You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.Xpf.Scheduling namespace. If you decide to upgrade an existing project in order to switch to the updated scheduler control, see the Migration Guidelines document.
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.
An instance of the AppointmentLabelCollection class can be accessed via the AppointmentStorage.Labels property of the AppointmentStorage object.
Example
This example demonstrates how to add items to the collection of appointment labels within the appointment storage using the AppointmentStorage.Labels property.
<dxsch:SchedulerStorage.AppointmentStorage>
<dxsch:AppointmentStorage>
<dxsch:AppointmentStorage.Labels>
<dxsch:AppointmentLabel Color="Aqua" DisplayName="Lunch Time" MenuCaption="Lunch Time"/>
<dxsch:AppointmentLabel Color="Violet" DisplayName="Meeting" MenuCaption="Meeting"/>
<dxsch:AppointmentLabel Color="Yellow" DisplayName="Presentation" MenuCaption="Presentation"/>
</dxsch:AppointmentStorage.Labels>
</dxsch:AppointmentStorage>
</dxsch:SchedulerStorage.AppointmentStorage>