New to Telerik UI for .NET MAUIStart a free 30-day trial

Specifies the days of the week. Members might be combined using bitwise operations to specify multiple days.

Definition

Namespace:Telerik.Maui.Controls.Scheduler

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
[Flags]
public enum RecurrenceDays

Fields

Indicates the range from Sunday to Saturday inclusive.

C#
EveryDay = WeekDays | WeekendDays

Indicates Friday.

C#
Friday = 32

Indicates Monday.

C#
Monday = 2

Indicates no selected day.

C#
None = 0

Indicates Saturday.

C#
Saturday = 64

Indicates Sunday.

C#
Sunday = 1

Indicates Thursday.

C#
Thursday = 16

Indicates Tuesday.

C#
Tuesday = 4

Indicates Wednesday.

C#
Wednesday = 8

Indicates the range from Monday to Friday inclusive.

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

Indicates the range from Saturday to Sunday inclusive.

C#
WeekendDays = Sunday | Saturday