corelibraries-devexpress-dot-xtrascheduler-dot-reporting-dot-schedulerprintadapter-5fd5fcc0.md
Gets or sets the day that the scheduler week starts from.
Namespace : DevExpress.XtraScheduler.Reporting
Assembly : DevExpress.XtraScheduler.v25.2.Core.Desktop.dll
NuGet Package : DevExpress.Scheduler.CoreDesktop
[DefaultValue(FirstDayOfWeek.System)]
public FirstDayOfWeek FirstDayOfWeek { get; set; }
<DefaultValue(FirstDayOfWeek.System)>
Public Property FirstDayOfWeek As FirstDayOfWeek
| Type | Default | Description |
|---|---|---|
| FirstDayOfWeek | System |
A DayOfWeek enumeration value, specifying the start day of the week for the scheduler.
|
Available values:
| Name | Description |
|---|---|
| System |
The start day of the week will be obtained from the regional settings of the operating system.
| | Sunday |
The calendar week will start with Sunday.
| | Monday |
The calendar week will start with Monday.
| | Tuesday |
The calendar week will start with Tuesday.
| | Wednesday |
The calendar week will start with Wednesday.
| | Thursday |
The calendar week will start with Thursday.
| | Friday |
The calendar week will start with Friday.
| | Saturday |
The calendar week will start with Saturday.
|
When the FirstDayOfWeek value is modified, the SchedulerPrintAdapter.FirstDayOfWeekChanged event occurs.
See Also