corelibraries-devexpress-dot-xtrascheduler-dot-scheduleroptionscustomization-fa134627.md
Gets or sets the recurrences that a user can enable in the Appointment Recurrence Form.
Namespace : DevExpress.XtraScheduler
Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll
NuGet Package : DevExpress.Scheduler.CoreDesktop
[DefaultValue(RecurrenceFormEditors.Default)]
public RecurrenceFormEditors RecurrenceFormEditors { get; set; }
<DefaultValue(RecurrenceFormEditors.Default)>
Public Property RecurrenceFormEditors As RecurrenceFormEditors
| Type | Default | Description |
|---|---|---|
| DevExpress.XtraScheduler.RecurrenceFormEditors | Default |
A value that specifies the recurrences that a user can enable in the Appointment Recurrence Form.
|
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
| | ASP.NET MVC Extensions | SchedulerSettings |
.OptionsCustomization .RecurrenceFormEditors
| | ASP.NET Web Forms Controls | ASPxScheduler |
.OptionsCustomization .RecurrenceFormEditors
|
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;
schedulerControl1.OptionsCustomization.RecurrenceFormEditors =
RecurrenceFormEditors.Minutely Or RecurrenceFormEditors.Hourly Or RecurrenceFormEditors.Daily
See Also
SchedulerOptionsCustomization Class