Enum 8 Country/Region Address Format

App
Base Application
Namespace
Microsoft.Foundation.Address
Versions
19-28

Values, 5

Versions171819202122232425262728

Source29

Source in 29

src/Layers/W1/BaseApp/Foundation/Address/CountryRegionAddressFormat.Enum.al18 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 Microsoft.Foundation.Address;

enum 8 "Country/Region Address Format"
{
    Extensible = true;
    AssignmentCompatibility = true;

    value(0; "Post Code+City") { Caption = 'Post Code+City'; }
    value(1; "City+Post Code") { Caption = 'City+Post Code'; }
    value(2; "City+County+Post Code") { Caption = 'City+County+Post Code'; }
    value(3; "Blank Line+Post Code+City") { Caption = 'Blank Line+Post Code+City'; }
    value(13; "Custom") { Caption = 'Custom'; }
}