Interface "Barcode Image Provider 2D"
Namespace: System.Text
Interface for 2D barcode image providers.
Methods
GetSupportedBarcodeSymbologies
Gets a list of the 2D barcode symbologies that the provider supports.
procedure GetSupportedBarcodeSymbologies(var Result: List of [Enum "Barcode Symbology 2D"])
Parameters
| Name | Type | Description |
|---|---|---|
| Result | List of [Enum System.Text."Barcode Symbology 2D"] |
A list of barcode symbologies. |
EncodeImage
Encodes an input text into a 2D barcode.
procedure EncodeImage(InputText: Text, BarcodeSymbology2D: Enum "Barcode Symbology 2D"): Codeunit "Temp Blob"
Parameters
| Name | Type | Description |
|---|---|---|
| InputText | Text |
The text to encode. |
| BarcodeSymbology2D | Enum System.Text."Barcode Symbology 2D" |
The 2D symbology to use for the encoding. |
Returns
| Type | Description |
|---|---|
| Codeunit System.Utilities."Temp Blob" |
The encoded barcode. |
EncodeImage
Encodes an input text into a 2D barcode.
procedure EncodeImage(InputText: Text, BarcodeSymbology2D: Enum "Barcode Symbology 2D", BarcodeEncodeSettings2D: Record "Barcode Encode Settings 2D" temporary): Codeunit "Temp Blob"
Parameters
| Name | Type | Description |
|---|---|---|
| InputText | Text |
The text to encode. |
| BarcodeSymbology2D | Enum System.Text."Barcode Symbology 2D" |
The 2D symbology to use for the encoding. |
| BarcodeEncodeSettings2D | Table System.Text."Barcode Encode Settings 2D" |
The settings to use when encoding the text. |
Returns
| Type | Description |
|---|---|
| Codeunit System.Utilities."Temp Blob" |
The encoded barcode. |