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

SchedulerDayViewAppointmentDisplayOptions.AllDayAppointmentsStatusDisplayType Property

Gets or sets a value specifying how the appointment status should be displayed for all-day appointments.

Namespace: DevExpress.Xpf.Scheduler

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

Declaration

public AppointmentStatusDisplayType AllDayAppointmentsStatusDisplayType { get; set; }

Property Value

Type Description
AppointmentStatusDisplayType

A AppointmentStatusDisplayType enumeration value specifying how to display the appointment status.

Available values:

Name Description
Never

The appointment status line is invisible.

AppointmentStatusDisplayType.Never

Time

The appointment status line has the same height (if shown vertically) or width (if shown horizontally) as the time of its appointment.

AppointmentStatusDisplayType.Time

Bounds

The appointment status line has the same height (if shown vertically) or width (if shown horizontally) as the appointment bounds.

AppointmentStatusDisplayType.Bounds

Property Paths

You can access this nested property as listed below:

Object Type Path to AllDayAppointmentsStatusDisplayType
DayView
.AppointmentDisplayOptions.AllDayAppointmentsStatusDisplayType
FullWeekView
.AppointmentDisplayOptions.AllDayAppointmentsStatusDisplayType
WorkWeekView
.AppointmentDisplayOptions.AllDayAppointmentsStatusDisplayType

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 AllDayAppointmentsStatusDisplayType property to customize the display mode of the status for all-day appointments, which are appointments occupying a whole day (the Appointment.AllDay property is set to true).

See Also