Interface Barcode Font Encoder 2D in 28
- App
- System Application
- Namespace
- System.Text
Versions171819202122232425262728latest
Source in 28
src/System Application/App/Barcode/src/Barcode Provider 2D/Font/BarcodeFontEncoder2D.Interface.al19 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>
/// Exposes common interface for 2D barcode font encoder.
/// </summary>
interface "Barcode Font Encoder 2D"
{
/// <summary>
/// Encodes a input text to a barcode font.
/// </summary>
/// <param name="InputText">The text to encode.</param>
/// <returns>The encoded barcode.</returns>
procedure EncodeFont(InputText: Text): Text;
}Procedures, 1
| Name | Parameters | Returns | Access | Obsolete |
|---|---|---|---|---|
| EncodeFont | (Text) | Text | public | - |