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

SchedulerControl.AllowAppointmentResize Event

Occurs when an end-user tries to resize an appointment and the SchedulerOptionsCustomization.AllowAppointmentResize property is set to Custom.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v18.1.dll

Declaration

public event AppointmentOperationEventHandler AllowAppointmentResize

Event Data

The AllowAppointmentResize 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 AppointmentEventArgs.
Recurring Gets or sets a value indicating if the appointment is recurring.

Remarks

Handle the AllowAppointmentResize event to manually decide whether to allow an end-user to resize an appointment or not. Note that the appointment to resize can be accessed via the AppointmentEventArgs.Appointment property. To prevent an appointment from being resized, set the AppointmentOperationEventArgs.Allow property to false.

Note

The AllowAppointmentResize event is fired only if the SchedulerOptionsCustomization.AllowAppointmentResize property is set to UsedAppointmentType.Custom.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the AllowAppointmentResize event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also