Interface "Barcode Font Provider 2D"
Namespace: System.Text
Interface for 2D barcode font 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. |
EncodeFont
Encodes an input text into a 2D barcode.
procedure EncodeFont(InputText: Text, BarcodeSymbology2D: Enum "Barcode Symbology 2D"): Text
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 |
|---|---|
| Text |
The encoded barcode. |