Interleaved 2 of 5 barcode class.

Namespace: Lesnikowski.Barcode
Assembly:  Barcode (in Barcode.dll)
Version: 1.0.5.40001

Syntax

C#
public class BarcodeI2of5 : BarcodeS2of5
Visual Basic (Declaration)
Public Class BarcodeI2of5 _
	Inherits BarcodeS2of5
Visual C++
public ref class BarcodeI2of5 : public BarcodeS2of5

Remarks

It is used primarily in the distribution and warehouse industry and in the medical field. It is commonly used for ITF-14, EAN-14, SSC-14 and DUN14.

The code is variable in length and is numeric only. It is also a continuous symbology.

Each character consists of 5 bars and 5 spaces. Each character encodes 2 digits. The bars encode the odd digits, and the spaces encode the even digits. This is the highest density symbology for numeric data. It is a self checking code but the use of a check character is optional if additional security is necessary.

Number length must be even. If number length is odd add '0' character at the beginning.

Inheritance Hierarchy

System..::Object
  Lesnikowski.Barcode..::BaseBarcode
    Lesnikowski.Barcode..::SimpleBarcode
      Lesnikowski.Barcode..::SimpleBarcodeNW
        Lesnikowski.Barcode..::BarcodeS2of5
          Lesnikowski.Barcode..::BarcodeI2of5
            Lesnikowski.Barcode..::BarcodeDeutschePost
            Lesnikowski.Barcode..::BarcodeITF14
            Lesnikowski.Barcode..::BarcodeOPC
            Lesnikowski.Barcode..::BarcodeUSPSSackLabel
            Lesnikowski.Barcode..::BarcodeUSPSTrayLabel

See Also