Skip to main content

SchedulerAppointmentDisplayOptions.TimeDisplayType Property

Specifies how the start and end time of the appointment should be displayed - using icons or digits.

Namespace: DevExpress.Xpf.Scheduler

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

Declaration

public AppointmentTimeDisplayType TimeDisplayType { get; set; }
Public Property TimeDisplayType As AppointmentTimeDisplayType

Property Value

Type Description
AppointmentTimeDisplayType

A AppointmentTimeDisplayType enumeration value specifying how to display the appointment time.

Property Paths

You can access the SchedulerAppointmentDisplayOptions.TimeDisplayType property from the following objects:

Object Type Path to TimeDisplayType
DayView
.AppointmentDisplayOptions.TimeDisplayType
MonthView
.AppointmentDisplayOptions.TimeDisplayType
TimelineView
.AppointmentDisplayOptions.TimeDisplayType
WeekView
.AppointmentDisplayOptions.TimeDisplayType
WorkWeekView
.AppointmentDisplayOptions.TimeDisplayType

Remarks

Use the TimeDisplayType property to specify whether the start and end time of the appointment should be displayed as clock icons, or as digits.

TimeDisplayType = Clock TimeDisplayType = Text
DXScheduler_TimeDisplayType_Clock DXScheduler_TimeDisplayType_Text

Examples

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

See Also