Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

SchedulerListEditorBase.OptionsCustomization Property

Provides access to the scheduler’s customization options.

Namespace: DevExpress.ExpressApp.Scheduler

Assembly: DevExpress.ExpressApp.Scheduler.v21.1.dll

Declaration

public abstract object OptionsCustomization { get; }
public abstract SchedulerOptionsCustomization OptionsCustomization { get; }

Property Value

Type Description
Object

A SchedulerOptionsCustomization object representing the scheduler’s customization options.

Property Value

Type Description
SchedulerOptionsCustomization

A SchedulerOptionsCustomization object representing the scheduler’s customization options.

Remarks

For additional information, refer to the SchedulerControl.OptionsCustomization property description.

In .NET Core and .NET Standard projects, you may need to perform an additional cast. The following example demonstrates how to do this:

using DevExpress.XtraScheduler;
// ...
((SchedulerOptionsCustomization)schedulerListEditor.OptionsCustomization).AllowInplaceEditor = UsedAppointmentType.All;
See Also