Skip to main content
A newer version of this page is available. .

SchedulerControl.AllowInplaceEditor Property

Gets or sets whether invoking the inplace editor is allowed. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

Assembly: DevExpress.Xpf.Scheduling.v18.2.dll

Declaration

public bool AllowInplaceEditor { get; set; }

Property Value

Type Description
Boolean

true, to allows using inplace edtior; otherwise, false.

Remarks

By default, end-users can use the inplace editor to either create a new appointment or edit an existing one:

DXScheduler_InplaceEditor

Use the AllowInplaceEditor property to control the end-users’ capability to invoke the inplace editor in a centralized manner. You can also override this global behavior by handling the SchedulerControl.CustomAllowInplaceEditor event.

Use the SchedulerControl.AllowAppointmentEdit property to restrict editing appointments using both inplace editor and Edit Appointment form.

See Also