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

WeekViewAppointmentDisplayOptionsEx.StatusDisplayType Property

Specifies how to display the status line.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v19.2.dll

Declaration

[DefaultValue(AppointmentStatusDisplayType.Bounds)]
public override AppointmentStatusDisplayType StatusDisplayType { get; set; }

Property Value

Type Default Description
AppointmentStatusDisplayType **Bounds**

An AppointmentStatusDisplayType enumeration value.

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 StatusDisplayType
MonthView
.AppointmentDisplayOptions.StatusDisplayType
WeekView
.AppointmentDisplayOptions.StatusDisplayType

Remarks

The StatusDisplayType values are interpreted differently for the vertical status line, i.e. if the WeekViewAppointmentDisplayOptionsEx.ShowAppointmentStatusVertically property is set to true, as shown in the following table.

StatusDisplayType Value Status Line Displayed Vertically
AppointmentStatusDisplayType.Bounds The appointment status line has the same height as the appointment bounds.
AppointmentStatusDisplayType.Time The same as for the Bounds value.
AppointmentStatusDisplayType.Never The appointment status line is invisible.
See Also