Enum 59 Auto Format, source in 24
Source242526272829metadata 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) { }
}