AppointmentLabelCollection Class
A collection of appointment labels.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
#Declaration
#Returned By
The AppointmentStorage.Labels property returns an instance of AppointmentLabelCollection.
#Remarks
AppointmentLabelCollection is 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.
#Examples
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>