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
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 |
|
ASP.NET Bootstrap Controls | BootstrapScheduler |
|
XAF: Cross-Platform .NET App UI & Web API | ASPxSchedulerListEditor |
|
ASP.NET MVC Extensions | SchedulerSettings |
|
ASP.NET Web Forms Controls | ASPxScheduler |
|
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