Skip to main content

AppointmentStorage.Labels Property

Provides access to the collection of appointment labels.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public AppointmentLabelCollection Labels { get; set; }

#Property Value

Type Description
AppointmentLabelCollection

An AppointmentLabelCollection which specifies the collection of appointment labels.

#Remarks

Use the Labels property to access the collection of appointment labels within the appointment storage. You can add, remove and access individual items using the members of the AppointmentLabelCollection 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>
See Also