Back to Devexpress

SchedulerOptionsCustomization.RecurrenceFormEditors Property

corelibraries-devexpress-dot-xtrascheduler-dot-scheduleroptionscustomization-fa134627.md

latest3.2 KB
Original Source

SchedulerOptionsCustomization.RecurrenceFormEditors Property

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

Declaration

csharp
[DefaultValue(RecurrenceFormEditors.Default)]
public RecurrenceFormEditors RecurrenceFormEditors { get; set; }
vb
<DefaultValue(RecurrenceFormEditors.Default)>
Public Property RecurrenceFormEditors As RecurrenceFormEditors

Property Value

TypeDefaultDescription
DevExpress.XtraScheduler.RecurrenceFormEditorsDefault

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:

LibraryObject TypePath to RecurrenceFormEditors
WinForms ControlsSchedulerControl

.OptionsCustomization .RecurrenceFormEditors

| | ASP.NET Bootstrap Controls | BootstrapScheduler |

.OptionsEditing .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.

csharp
schedulerControl1.OptionsCustomization.RecurrenceFormEditors =
    RecurrenceFormEditors.Minutely | RecurrenceFormEditors.Hourly | RecurrenceFormEditors.Daily;
vb
schedulerControl1.OptionsCustomization.RecurrenceFormEditors =
    RecurrenceFormEditors.Minutely Or RecurrenceFormEditors.Hourly Or RecurrenceFormEditors.Daily

See Also

SchedulerOptionsCustomization Class

SchedulerOptionsCustomization Members

DevExpress.XtraScheduler Namespace