Skip to main content
All docs
V23.2

DayView.ColumnWidthMode Property

Gets or sets whether all DayView columns are equal in width or if column width is calculated individually depending on the number of appointments scheduled for the same time.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v23.2.dll

NuGet Package: DevExpress.Win.Scheduler

Declaration

[DefaultValue(ColumnWidthMode.Fixed)]
[XtraSerializableProperty(XtraSerializationFlags.DefaultValue)]
public ColumnWidthMode ColumnWidthMode { get; set; }

Property Value

Type Default Description
DevExpress.XtraScheduler.ColumnWidthMode Fixed

Specifies whether column widths are equal.

Remarks

This property accepts two values: ColumnWidthMode.Auto and ColumnWidthMode.Fixed.

Fixed
The View is split into equally sized columns (the number of appointments in day columns is irrelevant). This is the default behavior.
Fixed Column Width Mode
Auto
In this mode, the View automatically calculates day column widths depending on the number of appointments that occupy the same time slot.
Auto Column Width Mode

In DayView, this property is in effect when multiple days are selected. ColumnWidthMode is also available in DayView descendants: FullWeekView and WorkWeekView.

Both column width modes allow you to handle the CustomDayViewColumnWidth event to set up custom column widths (in relative units).

How to Set Custom Column or Appointment Width

In Day, Work Week, and Full Week Views, you can set custom appointment or column sizes. Both settings are available when appointments are not grouped by their dates (the SchedulerControl.GroupType property does not equal “Date”).

Custom Column Width

Set the View.ColumnWidthMode property to “Fixed” and specify the View.ColumnWidth property value.

Custom Column Width

You can enable the View.AppointmentDisplayOptions.StretchAppointments property so that appointments stretch horizontally to occupy the entire column width.

Stretch with Column Width

Custom Appointment Width

Set the View.ColumnWidthMode property to “Auto” and specify the View.AppointmentDisplayOptions.AppointmentWidth property value.

Custom Appointment Width

The View.AppointmentDisplayOptions.StretchAppointments property is also in effect in this mode, and allows you to specify whether rightmost appointments should occupy the remaining time cell space.

Stretch with Appointment Width

See Also