Skip to main content

SchedulerListEditorBase.OptionsCustomization Property

Provides access to the scheduler’s customization options.

Namespace: DevExpress.ExpressApp.Scheduler

Assembly: DevExpress.ExpressApp.Scheduler.v25.2.dll

NuGet Package: DevExpress.ExpressApp.Scheduler

Declaration

public abstract object OptionsCustomization { get; }

Property Value

Type Description
Object

A SchedulerOptionsCustomization object representing the scheduler’s customization options.

Remarks

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

In .NET 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