Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

SchedulerControl.AppointmentResizeMode Property

Specifies how an appointment fits in the time cell(s) when modified by dragging its borders. This is a dependency property.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

#Declaration

public AppointmentDragResizeMode AppointmentResizeMode { get; set; }

#Property Value

Type Description
AppointmentDragResizeMode

One of the AppointmentDragResizeMode enumeration values indicating the appointment’s resize mode.

Available values:

Name Description
SnapToCell

Appointment Start and End borders are snapped to time cells which forces the end-user to set the time interval round to the nearest value determined by the DayViewBase.TimeScale property.

Precise

Appointment moves smoothly, its Start and End borders are moved pixel by pixel which enables the end-user to set the time interval precisely.

#Remarks

Use the AppointmentResizeMode property to specify the position of appointment borders when the appointment is resized.

Set the AppointmentResizeMode property to SnapToCells to snap borders to time cells, and to Precise to place them to the exact position they are moved to.

Important

The AppointmentResizeMode property value has effect only if the SnapToCell option (the DayViewBase.SnapToCellsMode property or the TimelineView.SnapToCellsMode property, depending on the View) is set to SnapToCellsMode.Never.

View Example: Process Appointment Drag/Drop/Resize Operations

See Also