Skip to main content

SchedulerAppointmentDisplayOptions.ShowRecurrence Property

Specify whether the recurrence symbol DXScheduler_RecurrenceSymbol should be displayed within recurrent appointments.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

public bool ShowRecurrence { get; set; }

#Property Value

Type Description
Boolean

true if a recurrence symbol should be displayed; otherwise, false.

#Property Paths

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

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

#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