Skip to main content

AppointmentResizeEventArgs.Allow Property

Specifies whether the appointment can be resized.

Namespace: DevExpress.XtraScheduler

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

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public bool Allow { get; set; }

Property Value

Type Description
Boolean

true if appointment resizing is allowed; otherwise, false.

Remarks

To prevent the appointment from being resized, set the Allow property to false and the AppointmentResizeEventArgs.Handled property to true in the SchedulerControl.AppointmentResized event handler.

You can specify the SchedulerOptionsCustomization.AllowAppointmentResize setting to define which appointment types can be resized. If SchedulerOptionsCustomization.AllowAppointmentResize is set to UsedAppointmentType.Custom, then the SchedulerControl.AllowAppointmentResize event occurs before the SchedulerControl.AppointmentResizing event.

See Also