Back to Devexpress

DayViewBase.ShowAllDayArea Property

wpf-devexpress-dot-xpf-dot-scheduling-dot-dayviewbase-44984db9.md

latest3.8 KB
Original Source

DayViewBase.ShowAllDayArea Property

Gets or sets a value indicating whether the All-Day Area is shown in the Day View, Work Week View, and Week View. This is a dependency property.

Namespace : DevExpress.Xpf.Scheduling

Assembly : DevExpress.Xpf.Scheduling.v25.2.dll

NuGet Package : DevExpress.Wpf.Scheduling

Declaration

csharp
public bool ShowAllDayArea { get; set; }
vb
Public Property ShowAllDayArea As Boolean

Property Value

TypeDescription
Boolean

true, to show the all-day area; otherwise, false.

|

Remarks

The All-Day Area displays the appointments scheduled for the whole day (those with the SchedulerItemBase.AllDay property set to true ) and the appointments which start on one day and finish on another.

If the ShowAllDayArea property is false , then the all-day appointments are shown in time cells.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowAllDayArea 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.

wpf-scheduler-specify-custom-edit-and-recurrence-dialogs/CS/CustomMvvmFormWithRecurrenceExample/MainWindow.xaml#L25

xml
ResourcesPerPage="3"
ShowAllDayArea="False"
ShowWorkTimeOnly="True" />

wpf-scheduler-use-scheduler-report-to-print-and-export-appointments/CS/PrintingExample/MainWindow.xaml#L26

xml
GroupType="Resource">
<dxsch:DayView ResourcesPerPage="3" ShowAllDayArea="False" />
<!--region #PrintButton-->

wpf-scheduler-specify-custom-work-time-intervals/CS/CustomWorkTimeExample/MainWindow.xaml#L40

xml
ResourcesPerPage="4"
ShowAllDayArea="False"
NavigationButtonsVisibility="Never"

wpf-scheduler-customize-appointment-appearance/CS/CustomizeAppointmentExample/MainWindow.xaml#L91

xml
AppointmentStyle="{StaticResource appointmentStyle}"
ShowAllDayArea="False"
ShowWorkTimeOnly="True"

See Also

DayViewBase Class

DayViewBase Members

DevExpress.Xpf.Scheduling Namespace