SchedulerControl.AllowInplaceEditor Event
Occurs when an end-user tries to invoke an appointment’s in-place editor, and the OptionsCustomization.AllowInplaceEditor property is set to Custom.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v24.2.dll
NuGet Package: DevExpress.Wpf.Scheduler
#Declaration
public event AppointmentOperationEventHandler AllowInplaceEditor
#Event Data
The AllowInplaceEditor event's data class is AppointmentOperationEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Allow | Gets or sets a value indicating whether an end-user is allowed to perform a particular action. |
Appointment |
Gets the appointment for which the event was raised.
Inherited from Appointment |
Recurring | Gets or sets a value indicating if the appointment is recurring. |
#Remarks
Important
You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.
Handle the AllowInplaceEditor event to manually decide whether to allow an end-user to invoke the in-place editor for an appointment or not. Note that the appointment to edit can be accessed via the AppointmentEventArgs.Appointment property. To prevent the in-place editor from being invoked, set the AppointmentOperationEventArgs.Allow property to false.
Note
The Allow