Skip to main content

FormShowingEventArgs.AllowResize Property

Gets or sets a value indicating whether end-users are allowed to resize the form.

Namespace: DevExpress.Xpf.Scheduler

Assembly: DevExpress.Xpf.Scheduler.v14.2.dll

#Declaration

public bool AllowResize { get; set; }

#Property Value

Type Description
Boolean

true if end-users are allowed to resize the form; otherwise, false.

#Examples

This example demonstrates how to replace the standard Edit Appointment form with a custom one, and prevent end-users from resizing this form via the SchedulerControl.EditAppointmentFormShowing event.

using DevExpress.Xpf.Scheduler;
// ...

private void schedulerControl1_EditAppointmentFormShowing(object sender, EditAppointmentFormEventArgs e) {
    e.Form = new CustomAppointmentForm(this.schedulerControl1, e.Appointment);
    e.AllowResize = false;
}
See Also