Encodation
Represents the encodation used to generate the DataMatrix barcode.
Definition
Namespace:Telerik.Maui.Controls.Barcode
Assembly:Telerik.Maui.Controls.dll
Syntax:
public enum Encodation
Fields
Represents the ASCII encodation. Allowed characters include double digit numerics and all values from the ASCII table.
Ascii = 0
The double digit numerics use 4 bits. The ASCII values in the 0-127 range use 8 bits. The ASCII values in 128-255 range use 16 bits.
Represents the ASCII GS1 encodation. Used to encode FNC1 characters in the ASCII range.
AsciiGS1 = 6
Represents the Base256 encodation. Used to encode characters in the whole ASCII range.
Base256 = 5
Each character takes 8 bits.
Represents the C40 encodation. Used primarily for upper-case alphanumerics.
C40 = 1
The upper-case alphanumeric characters use 5.33 bits. The lower-case and special characters use 10.66 bits.
Represents the EDIFACT encodation. Used to encode ASCII values in the 32-94 range.
Edifact = 4
Each character takes 6 bits.
Represents the Text encodation. Used primarily for lower-case alphanumerics.
Text = 2
The lower-case alphanumeric characters use 5.33 bits. The upper-case and special characters use 10.66 bits.
Represents the X12 encodation. Uses the characters from ANSI X12 EDI data set.
X12 = 3
Each character takes 5.33 bits.