Enum 59 Auto Format in 24

App
System Application
Namespace
System.Text

Values, 2

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/Auto Format/src/AutoFormat.Enum.al26 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.Text;

/// <summary>
/// Formats the appearance of decimal data types.
/// </summary>
enum 59 "Auto Format"
{
    Extensible = true;

    /// <summary>
    /// Ignore the value that AutoFormatExpr passes and use the standard format for decimals instead.
    /// </summary>
    value(0; DefaultFormat) { }

    /// <summary>
    /// Apply a specific format in AutoFormatExpr without additional transformation.
    /// </summary>
    value(11; CustomFormatExpr) { }
}

Values, 2

IdNameObsolete
0DefaultFormat-
11CustomFormatExpr-