Skip to main content

MonthView.AppointmentDisplayOptions Property

Provides access to the options specifying how appointments are displayed in a Month View.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public SchedulerMonthViewAppointmentDisplayOptions AppointmentDisplayOptions { get; set; }

Property Value

Type Description
SchedulerMonthViewAppointmentDisplayOptions

A SchedulerMonthViewAppointmentDisplayOptions object containing options for displaying appointments.

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.

Use the AppointmentDisplayOptions property to set the options, which define how appointments should be displayed. For example, you can specify whether the start and end time should be visible for appointments (SchedulerAppointmentDisplayOptions.StartTimeVisibility and SchedulerAppointmentDisplayOptions.EndTimeVisibility), whether the start and end time of appointments should be displayed as symbols or as digits (SchedulerAppointmentDisplayOptions.TimeDisplayType), whether the recurrence and reminder icons should be displayed for recurrent appointments and appointments with reminders, respectively (SchedulerAppointmentDisplayOptions.ShowRecurrence and SchedulerAppointmentDisplayOptions.ShowReminder) and some other display options.

Example

This example demonstrates how to customize the Month View within the Scheduler control.

To do this, it is necessary to modify the MonthView object accessed via the SchedulerControl.MonthView property.

<dxsch:SchedulerControl.MonthView>
    <dxsch:MonthView WeekCount="2" 
                    ShowWeekend="True" 
                    CompressWeekend="True">
        <dxsch:MonthView.AppointmentDisplayOptions>
            <dxsch:SchedulerMonthViewAppointmentDisplayOptions ShowRecurrence="False"
                    ShowReminder="False" 
                    TimeDisplayType="Clock" 
                    EndTimeVisibility="Auto" 
                    StartTimeVisibility="Auto" />
        </dxsch:MonthView.AppointmentDisplayOptions>
    </dxsch:MonthView>
</dxsch:SchedulerControl.MonthView>
See Also