Skip to main content

WeekViewAppointmentDisplayOptions.SnapToCellsMode Property

Overrides the AppointmentDisplayOptions.SnapToCellsMode property to hide it.

Namespace: DevExpress.XtraScheduler

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

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

[Browsable(false)]
public override AppointmentSnapToCellsMode SnapToCellsMode { get; set; }

Property Value

Type Description
AppointmentSnapToCellsMode

Returns AppointmentSnapToCellsMode.Always

Available values:

Name Description
Auto

Appointment is stretched to cell border only if the distance from the cell border to the edge of an appointment is less than half of the cell width.

SnapToCellMode-Auto

Always

An appointment is always stretched to cell borders so that it occupies the entire cell or several cells.

SnapToCellMode-Always

Never

The appointment visible width is proportional to its duration. There is a minimal visible width (about 5 pixels). If an appointment’s duration is quite small, it will never be narrower than the minimal width.

SnapToCellMode-Never

Disabled

The appointment visible width is proportional to its duration. The minimal value of a dimension that represents the appointment duration is one pixel. The following picture illustrates the difference between the Disabled and Never modes for an appointment with a very small duration. The Disabled mode displays appointment as a line with a height of one pixel; however in Never mode, it looks like a small appointment with a height of several pixels, rather than a line.

SnapToCells_Disabled

Remarks

This property is intended to hide the corresponding property of the AppointmentDisplayOptions class.

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

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