Skip to main content

DayView.AppointmentDisplayOptions Property

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

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public SchedulerDayViewAppointmentDisplayOptions AppointmentDisplayOptions { get; set; }

#Property Value

Type Description
SchedulerDayViewAppointmentDisplayOptions

A SchedulerDayViewAppointmentDisplayOptions object containing options for displaying appointments.

#Remarks

Use the AppointmentDisplayOptions property to set the options that 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 certain other display options.

#Examples

This example demonstrates how to customize the Day View within the SchedulerControl. To do this, it is necessary to modify the DayView object accessed via the SchedulerControl.DayView property.

See Also