Skip to main content

SchedulerOptionsCustomization.RecurrenceFormEditors Property

Gets or sets the recurrences that a user can enable in the Appointment Recurrence Form.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v24.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

#Declaration

[DefaultValue(RecurrenceFormEditors.Default)]
public RecurrenceFormEditors RecurrenceFormEditors { get; set; }

#Property Value

Type Default Description
DevExpress.XtraScheduler.RecurrenceFormEditors Default

A value that specifies the recurrences that a user can enable in the Appointment Recurrence Form.

#Property Paths

You can access this nested property as listed below:

Library Object Type Path to RecurrenceFormEditors
WinForms Controls SchedulerControl
.OptionsCustomization .RecurrenceFormEditors
ASP.NET Bootstrap Controls BootstrapScheduler
.OptionsEditing .RecurrenceFormEditors
XAF: Cross-Platform .NET App UI & Web API ASPxSchedulerListEditor
.OptionsCustomization .RecurrenceFormEditors
ASP.NET MVC Extensions SchedulerSettings
.OptionsCustomization .RecurrenceFormEditors
ASP.NET Web Forms Controls ASPxScheduler
.OptionsCustomization .RecurrenceFormEditors

#Remarks

The code below illustrates how to hide default “Weekly”, “Monthly” and “Yearly” patterns, and display initially hidden “Minutely” and “Hourly” patterns.

schedulerControl1.OptionsCustomization.RecurrenceFormEditors =
    RecurrenceFormEditors.Minutely | RecurrenceFormEditors.Hourly | RecurrenceFormEditors.Daily;
See Also