DayView.ShowDayHeaders Property
Gets or sets a value which specifies if day headers are shown when a scheduler control shows its data in the Day or the Work-Week views.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
[DefaultValue(true)]
[XtraSerializableProperty]
public bool ShowDayHeaders { get; set; }
<DefaultValue(True)>
<XtraSerializableProperty>
Public Property ShowDayHeaders As Boolean
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to show the day headers; otherwise, false. |
Remarks
The day headers are shown at the top of every day in Day and Work-Week views. If the ShowDayHeaders property is set to false, then the day headers will be hidden.

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