New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.Scheduler.dll

Syntax:

C#
[Flags]
public enum WeekDays

Fields

Specifies every day of the week

C#
EveryDay = WorkDays | WeekendDays

Specifies the sixth of the week

C#
Friday = 32

Specifies the second day of the week

C#
Monday = 2

Specifies none of the days

C#
None = 0

Specifies the seventh of the week

C#
Saturday = 64

Specifies the first day of the week

C#
Sunday = 1

Specifies the fifth of the week

C#
Thursday = 16

Specifies the third day of the week

C#
Tuesday = 4

Specifies the fourth day of the week

C#
Wednesday = 8

Specifies the weekend days of the week

C#
WeekendDays = Sunday | Saturday

Specifies the work days of the week

C#
WorkDays = Monday | Tuesday | Wednesday | Thursday | Friday