Enum 8761 BarcodeFailure in 25
- App
- System Application
- Namespace
- System.Device
Versions171819202122232425262728latest
Source in 25
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
| Id | Name | Obsolete |
|---|---|---|
| 0 | Cancel | - |
| 1 | NoBarcode | - |
| 2 | Error | - |