Enum 8761 BarcodeFailure in 26

App
System Application
Namespace
System.Device

Values, 3

Versions171819202122232425262728latest

Source242526272829

Source in 26

src/System Application/App/ControlAddIns/src/BarcodeFailure.Enum.al27 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.Device;

/// <summary>
/// The failure for the barcode scanner.
/// </summary>
enum 8761 BarcodeFailure
{
    /// <summary>
    /// The barcode scanning action was canceled.
    /// </summary>
    value(0; Cancel) { }

    /// <summary>
    /// No barcode was found.
    /// </summary>
    value(1; NoBarcode) { }

    /// <summary>
    /// An error occurred while scanning the barcode.
    /// </summary>
    value(2; Error) { }
}

Values, 3

IdNameObsolete
0Cancel-
1NoBarcode-
2Error-