Enum 59 Auto Format in 26
- App
- System Application
- Namespace
- System.Text
Versions171819202122232425262728latest
Source in 26
src/System Application/App/Auto Format/src/AutoFormat.Enum.al32 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)
{
Caption = 'Default Format';
}
/// <summary>
/// Apply a specific format in AutoFormatExpr without additional transformation.
/// </summary>
value(11; CustomFormatExpr)
{
Caption = 'Custom Format Expression';
}
}
Values, 2
| Id | Name | Obsolete |
|---|---|---|
| 0 | DefaultFormat | - |
| 11 | CustomFormatExpr | - |