New to Telerik UI for .NET MAUIStart a free 30-day trial

Represents the encodation used to generate the DataMatrix barcode.

Definition

Namespace:Telerik.Maui.Controls.Barcode

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public enum Encodation

Fields

Represents the ASCII encodation. Allowed characters include double digit numerics and all values from the ASCII table.

C#
Ascii = 0
Remarks:

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.

C#
AsciiGS1 = 6

Represents the Base256 encodation. Used to encode characters in the whole ASCII range.

C#
Base256 = 5
Remarks:

Each character takes 8 bits.

Represents the C40 encodation. Used primarily for upper-case alphanumerics.

C#
C40 = 1
Remarks:

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.

C#
Edifact = 4
Remarks:

Each character takes 6 bits.

Represents the Text encodation. Used primarily for lower-case alphanumerics.

C#
Text = 2
Remarks:

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.

C#
X12 = 3
Remarks:

Each character takes 5.33 bits.