DayView.ShowAllDayArea Property
Gets or sets a value which specifies if the all-day area is shown when a scheduler control shows its data in the Day or Work-Week view.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
Declaration
[XtraSerializableProperty]
[DefaultValue(true)]
public bool ShowAllDayArea { get; set; }
<XtraSerializableProperty>
<DefaultValue(True)>
Public Property ShowAllDayArea As Boolean
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true to show the all-day area; otherwise, false. |
Remarks
The all-day area is the area shown at the top of every day in a Day or Work-Week view, where the all-day appointments (the appointments which have their Appointment.AllDay property equal to true, and the appointments whose duration is more than 1 day) are usually shown.

If the ShowAllDayArea property is set to false, then all-day appointments will be shown in time cells.
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.