Enum 2619 Printer Type in 25
- App
- System Application
- Namespace
- System.Device
Versions171819202122232425262728latest
Source in 25
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';
}
}
Values, 2
| Id | Name | Obsolete |
|---|---|---|
| 0 | Local Printer | - |
| 1 | Network Printer | - |