SchedulerOptionsCustomization.RecurrenceFormEditors Property
In This Article
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. |
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 Recurrence |
---|---|---|
Win |
Scheduler |
|
ASP. |
Bootstrap |
|
XAF: Cross-Platform .NET App UI & Web API | ASPx |
|
ASP. |
Scheduler |
|
ASP. |
ASPx |
|
#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