Enum 4690 Recurrence - Day of Week in 26
- App
- System Application
- Namespace
- System.DateTime
Versions171819202122232425262728latest
Source in 26
src/System Application/App/Recurrence Schedule/src/RecurrenceDayOfWeek.Enum.al84 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.DateTime;
/// <summary>
/// This enum has the day of the week for which the recurrence will occur.
/// </summary>
enum 4690 "Recurrence - Day of Week"
{
Extensible = false;
/// <summary>
/// Specifies that the recurrence to occur on Monday.
/// </summary>
value(1; Monday)
{
}
/// <summary>
/// Specifies that the recurrence to occur on Tuesday.
/// </summary>
value(2; Tuesday)
{
}
/// <summary>
/// Specifies that the recurrence to occur on Wednesday.
/// </summary>
value(3; Wednesday)
{
}
/// <summary>
/// Specifies that the recurrence to occur on Thursday.
/// </summary>
value(4; Thursday)
{
}
/// <summary>
/// Specifies that the recurrence to occur on Friday.
/// </summary>
value(5; Friday)
{
}
/// <summary>
/// Specifies that the recurrence to occur on Saturday.
/// </summary>
value(6; Saturday)
{
}
/// <summary>
/// Specifies that the recurrence to occur on Sunday.
/// </summary>
value(7; Sunday)
{
}
/// <summary>
/// Specifies that the recurrence to occur every day.
/// </summary>
value(8; Day)
{
}
/// <summary>
/// Specifies that the recurrence to occur on all days from Monday to Friday.
/// </summary>
value(9; Weekday)
{
}
/// <summary>
/// Specifies that the recurrence to occur on Saturday and Sunday.
/// </summary>
value(10; "Weekend Day")
{
}
}Values, 10
| Id | Name | Obsolete |
|---|---|---|
| 1 | Monday | - |
| 2 | Tuesday | - |
| 3 | Wednesday | - |
| 4 | Thursday | - |
| 5 | Friday | - |
| 6 | Saturday | - |
| 7 | Sunday | - |
| 8 | Day | - |
| 9 | Weekday | - |
| 10 | Weekend Day | - |