Table 9204 Barcode Encode Settings 2D in 24

App
System Application
Namespace
System.Text

Fields, 4

Versions171819202122232425262728latest

Source242526272829

Source in 24

src/System Application/App/Barcode/src/Barcode Provider 2D/BarcodeEncodeSettings2D.Table.al60 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>
/// Common setting used when encoding 2D barcodes.
/// </summary>
table 9204 "Barcode Encode Settings 2D"
{
    Access = Public;
    Extensible = true;
    TableType = Temporary;
    InherentEntitlements = X;
    InherentPermissions = X;
    DataClassification = SystemMetadata;

    fields
    {
        /// <summary>
        /// Error Correction Level option used by QR code symbology.
        /// </summary>
        field(1; "Error Correction Level"; Option)
        {
            OptionMembers = High,Medium,Low,Quartile;
            InitValue = "Medium";
            DataClassification = SystemMetadata;
        }

        /// <summary>
        /// Module Size option used by QR code symbology.
        /// </summary>
        field(2; "Module Size"; Integer)
        {
            InitValue = 5;
            DataClassification = SystemMetadata;
        }

        /// <summary>
        /// Quite Zone Width option used by QR code symbology.
        /// </summary>
        field(3; "Quite Zone Width"; Integer)
        {
            Caption = 'Quiet Zone Width';
            DataClassification = SystemMetadata;
        }

        /// <summary>
        /// Code Page option used by QR code symbology.
        /// </summary>
        field(4; "Code Page"; Integer)
        {
            InitValue = 932;
            DataClassification = SystemMetadata;
        }
    }
}

Fields, 4

IdNameTypeObsolete
1Error Correction LevelOption-
2Module SizeInteger-
3Quite Zone WidthInteger-
4Code PageInteger-