corelibraries-devexpress-dot-xtrascheduler-2e5fa56a.md
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
public interface ISchedulerInplaceEditorEx :
IDisposable
Public Interface ISchedulerInplaceEditorEx
Inherits IDisposable
The following members return ISchedulerInplaceEditorEx objects:
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