Back to Devexpress

ISchedulerInplaceEditorEx Interface

corelibraries-devexpress-dot-xtrascheduler-2e5fa56a.md

latest2.5 KB
Original Source

ISchedulerInplaceEditorEx Interface

The interface is designed for implementing a custom in-place editor.

Namespace : DevExpress.XtraScheduler

Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll

NuGet Package : DevExpress.Scheduler.CoreDesktop

Declaration

csharp
public interface ISchedulerInplaceEditorEx :
    IDisposable
vb
Public Interface ISchedulerInplaceEditorEx
    Inherits IDisposable

The following members return ISchedulerInplaceEditorEx objects:

Remarks

To substitute the default in-place editor with a custom one, you should implement a class with ISchedulerInplaceEditorEx interface, and define its methods and events. Create an instance of this class within the SchedulerControl.InplaceEditorShowing event handler.

All the information required to create the custom editor - the SchedulerControl, the current appointment being edited, bounds, color and font - are provided by the SchedulerInplaceEditorEventArgs instance, available via the InplaceEditorEventArgs.SchedulerInplaceEditorEventArgs property.

A custom editor instance should be assigned to the InplaceEditorEventArgs.InplaceEditorEx property.

Please refer to the How To: Implement a Custom Inplace Editor for Appointments help article for an example of use.

See Also

ISchedulerInplaceEditorEx Members

How To: Implement a Custom In-place Editor for Appointments

DevExpress.XtraScheduler Namespace