Enum 4694 Recurrence - Monthly Pattern in 27
- App
- System Application
- Namespace
- System.DateTime
Versions171819202122232425262728latest
Source in 27
src/System Application/App/Recurrence Schedule/src/RecurrenceMonthlyPattern.Enum.al28 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 monthly occurrence patterns for the recurrence.
/// </summary>
enum 4694 "Recurrence - Monthly Pattern"
{
Extensible = false;
/// <summary>
/// Specifies that the recurrence will occur on a specific day.
/// </summary>
value(0; "Specific Day")
{
}
/// <summary>
/// Specifies that the recurrence will occur on a weekday. This is used in conjuction with the "Recurrence - Day Of Week" enums.
/// </summary>
value(1; "By Weekday")
{
}
}Values, 2
| Id | Name | Obsolete |
|---|---|---|
| 0 | Specific Day | - |
| 1 | By Weekday | - |