Enum 4692 Recurrence - Pattern in 25
- App
- System Application
- Namespace
- System.DateTime
Versions171819202122232425262728latest
Source in 25
src/System Application/App/Recurrence Schedule/src/RecurrencePattern.Enum.al42 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 occurrence patterns for the recurrence.
/// </summary>
enum 4692 "Recurrence - Pattern"
{
Extensible = false;
/// <summary>
/// Specifies that the recurrence will occur daily.
/// </summary>
value(0; Daily)
{
}
/// <summary>
/// Specifies that the recurrence will occur weekly.
/// </summary>
value(1; Weekly)
{
}
/// <summary>
/// Specifies that the recurrence will occur monthly.
/// </summary>
value(2; Monthly)
{
}
/// <summary>
/// Specifies that the recurrence will occur yearly.
/// </summary>
value(3; Yearly)
{
}
}Values, 4
| Id | Name | Obsolete |
|---|---|---|
| 0 | Daily | - |
| 1 | Weekly | - |
| 2 | Monthly | - |
| 3 | Yearly | - |