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

SchedulerOptionsCustomization.RecurrenceFormEditors Property

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

Namespace: DevExpress.XtraScheduler

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

NuGet Packages: DevExpress.Scheduler.CoreDesktop, DevExpress.WindowsDesktop.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
.OptionsCustomization .RecurrenceFormEditors
eXpressApp Framework SchedulerListEditorBase
.OptionsCustomization .RecurrenceFormEditors
ASPxSchedulerListEditor
.OptionsCustomization .RecurrenceFormEditors
SchedulerListEditor
.OptionsCustomization .RecurrenceFormEditors
ASP.NET MVC Extensions MVCxScheduler
.OptionsCustomization .RecurrenceFormEditors
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