DataMatrixSymbolEncoding Enumeration |
DataMatrix supports six different encoding schemes or modes. Each scheme has
its native character set for which achieves maximum efficiency.
Namespace:
Atalasoft.Barcoding.Writing
Assembly:
Atalasoft.dotImage.Barcoding.Writing (in Atalasoft.dotImage.Barcoding.Writing.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public enum DataMatrixSymbolEncoding
Public Enumeration DataMatrixSymbolEncoding
Members
| Member name | Description |
---|
| Auto |
The data is encoded in the best possible way using all the available
encodation modes. Auto is the default mode.
|
| ASCII |
Encodes all 127 standard ASCII characters as well as the extended ASCII
character set 128-255.
|
| C40 |
Encodes all characters from the standard and extended ASCII sets.
Is more efficient than ASCII encodation for upper-case alphabetic
and numeric characters.
|
| Text |
Encodes all characters from the standard and extended ASCII sets.
Is more efficient than ASCII encodation for lower-case alphabetic
and numeric characters.
|
| X12 |
Encodes only A-Z, 0-9, space and X12 control characters with ASCII
values 13, 42 and 62.
|
| EDIFACT |
Encodes characters from the standard ASCII set in the range 32
through 94 which includes all upper and lower case alphabetic letters,
numbers 0-9, the space as well as many symbols and punctuation characters.
|
| Base256 |
Encodes characters in the range 0-255.
Adecuate for the encodation of binary data.
|
See Also