Skip to main content

DayView.ShowMoreButtonsOnEachColumn Property

Gets or sets a value indicating whether to show the 'More' buttons on each column, or only on the time ruler in the Day View.

Namespace: DevExpress.Xpf.Scheduler

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

#Declaration

[XtraSerializableProperty]
[DefaultValue(false)]
public bool ShowMoreButtonsOnEachColumn { get; set; }

#Property Value

Type Default Description
Boolean

false

true to show 'More' buttons on each column; otherwise, false.

#Remarks

Use the ShowMoreButtonsOnEachColumn property to specify whether the 'More' buttons will be displayed on the time ruler, or on each column in the Day View.

ShowMoreButtonsOnEachColumn = false ShowMoreButtonsOnEachColumn = true
DXScheduler_ShowMoreButtonsOnEachColumnFalse DXScheduler_ShowMoreButtonsOnEachColumnTrue

#Examples

This example demonstrates how to customize the Day View within the SchedulerControl. To do this, it is necessary to modify the DayView object accessed via the SchedulerControl.DayView property.

See Also