Skip to main content

SchedulerAppointmentDisplayOptions.EndTimeVisibility Property

Specifies whether the end time should be visible for the appointment.

Namespace: DevExpress.Xpf.Scheduler

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

NuGet Package: DevExpress.Wpf.Scheduler

Declaration

public AppointmentTimeVisibility EndTimeVisibility { get; set; }

Property Value

Type Description
AppointmentTimeVisibility

A AppointmentTimeVisibility enumeration value, specifying whether the appointment end time should be displayed.

Available values:

Name Description
Auto

Whether the appointment time is shown or not is determined automatically according to the current scheduler view’s settings.

Always

Appointment time is always shown.

Never

Appointment time is never shown.

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.

When the EndTimeVisibility is set to AppointmentTimeVisibility.Auto, the appointment’s end time is not shown when the appointment is of the Appointment.AllDay type. In other cases, the end time is displayed, except for the Day View and Work-Week View. They are special because the appointment duration is represented by its height, and the end time is not displayed if it aligns to the time cell border. For example, if the DayView.TimeScale is 30 min, then the end time values of 2:30 and 7:00 will not be displayed, while 2:45 and 7:01 - will be.

See Also