Enum 2619 Printer Type, source in 24
Source242526272829metadata in 24
src/System Application/App/Printer Management/src/PrinterType.Enum.al31 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>
/// Specifies the type of a printer.
/// </summary>
enum 2619 "Printer Type"
{
Extensible = false;
/// <summary>
/// Specifies a local printer.
/// </summary>
value(0; "Local Printer")
{
Caption = 'Local Printer';
}
/// <summary>
/// Specifies a cloud printer.
/// </summary>
value(1; "Network Printer")
{
Caption = 'Cloud Printer';
}
}