Enum 4694 Recurrence - Monthly Pattern in 28

App
System Application
Namespace
System.DateTime

Values, 2

Versions171819202122232425262728latest

Source242526272829

Source in 28

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

IdNameObsolete
0Specific Day-
1By Weekday-