Skip to content

Four51.BarcodeSymbology

jdubs edited this page Oct 21, 2016 · 1 revision

Overview

Defined character replacements, segregated by barcode type. These values are culled from the standardizing organizations documentation.

Source Code

internal struct BarcodeSymbology
{
	public static string[] EAN13 = { "¶|x", "·|x", "Ä|x", "Å|x", "Æ|x", "Ç|x", "È|x", "É|x", "Ê|x", "Ë|x" };
	public static string[] UPCA = { "U|xa", "[|xb", "V|xc", "W|xd", "X|xe", "Y|xf", "Z|xg", "u|xh", "\\|xi", "]|xj" };
	public static string[] UPCA_checkdigit = { "U", "[", "V", "W", "X", "Y", "Z", "u", "\\", "]" };
}

Clone this wiki locally