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

WeekView.AppointmentDisplayOptions Property

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

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v19.1.dll

Declaration

public SchedulerWeekViewAppointmentDisplayOptions AppointmentDisplayOptions { get; set; }

Property Value

Type Description
SchedulerWeekViewAppointmentDisplayOptions

A SchedulerWeekViewAppointmentDisplayOptions 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 Week View within the Scheduler control.

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

<dxsch:SchedulerControl.WeekView>
    <dxsch:WeekView>
        <dxsch:WeekView.AppointmentDisplayOptions>
            <dxsch:SchedulerWeekViewAppointmentDisplayOptions ShowRecurrence="True"
                    ShowReminder="True" 
                    StartTimeVisibility="Never" 
                    EndTimeVisibility="Never" />
        </dxsch:WeekView.AppointmentDisplayOptions>
    </dxsch:WeekView>
</dxsch:SchedulerControl.WeekView>

The following code snippets (auto-collected from DevExpress Examples) contain references to the AppointmentDisplayOptions property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also