DayView.Days Property
In This Article
Gets or sets the days that are currently displayed by the Day View. This is a dependency property.
Namespace: DevExpress.UI.Xaml.Scheduler
Assembly: DevExpress.UI.Xaml.Scheduler.v21.2.dll
NuGet Package: DevExpress.Uwp.Controls
#Declaration
public IEnumerable<DateTime> Days { get; set; }
#Property Value
Type | Description |
---|---|
IEnumerable<Date |
A list of dates displayed in the view. |
#Remarks
The Days property allows you to specify non-consecutive dates to display in the DayView. The range between the dates is preserved when navigating the scheduler. For example, if the DayCount property is set to 2 and the Days property is set to January 1 and January 3, navigating forward changes the displayed dates to January 4 and January 6. Navigating back changes the displayed dates to December 29 and December 31.
See Also