KA.Barcode for .NET WinForms
How to Generate Interleaved 2 of 5 in .NET WinForms
How to generate & create linear Interleaved 2 of 5 in .NET WinForms, C#, VB.NET class library
  • Easy to generate Interleaved 2 of 5 barcodes in .NET windows applications
  • Completely run in .NET Framework 2.0/3.0/4.0
  • Support Visual C#, VB.NET, Managed C++ and Borland Delphi for .NET
  • Easy to generate Interleaved 2 of 5 barcodes in .NET windows applications
  • Support Interleaved 2 of 5 creation in .NET class and console applications
  • Print and save Interleaved 2 of 5 as gif, jpeg, png, tiff, and bitmap images
  • Rotate Interleaved 2 of 5 barcode into 0, 90, 180, 270 degree
  • Show human readable text with customizable Font, Color, and Margin Settings
Interleaved 2 of 5 Generator for Winforms is a great barcode solution, allowing easy Interleaved 2 of 5 barcode creation and customization in .NET Windows Forms applications as well as .NET class and console applications. Users may customize generated Interleaved 2 of 5 barcodes as they wish with flexible barcode image, sizing, and text options provided by this product.
Interleaved 2 of 5 Overview in .NET WinForms Control
Interleaved 2 of 5 is also known as ANSI/AIM ITF 25, ANSI/AIM I-2/5, Uniform Symbology Specification ITF, USS ITF 2/5, ITF, I-2/5, 2 of 5 Interleaved, 2/5 Interleaved, which is a higher-density numeric symbology based upon the Industrial 2 of 5 symbology mainly used in distribution and warehouse industry.

Interleaved 2 of 5 Control for .NET WinForms Valid Data

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
  • Encode couples of digits
  • Add System number 0 when you input odd number of digits
Interleaved 2 of 5 Generation in .NET WinForms SDK

How to Drag & Drop Data Matrix Generator Control into WinForms

  1. 1.
    In Visual Studio, right-click in "Toolbox" and select "Choose Items..."
  2. 2.
    In the pop-up window, click button "Browse..." and select "KeepAutomation.Barcode.Windows.dll"
  3. 3.
    Then, you'll see "BarCodeControl" in Visual Studio toolbox
  4. 4.
    Drag and drop "BarCodeControl" into the project forms and a Code 128 barcode is generated
  5. 5.
    Now, you can change barcode types and customize image settings in the "Properties" window

How to Create Interleaved 2 of 5 in .NET WinForms Using C# or VB.NET

Using the C# or VB.NET sample code below to produce and integrate Interleaved 2 of 5 in .NET Windows Forms applications.
using KeepAutomation.Barcode.Bean;

BarCode interleaved25 = new BarCode();
interleaved25.Symbology = KeepAutomation.Barcode.Symbology.Interleaved2of5;
interleaved25.CodeToEncode = "1234567";
interleaved25.X = 2;
interleaved25.WideNarrowRatio = 2.5;
interleaved25.generateBarcodeToImageFile("C://interleaved25-csharp.png");
Dim interleaved25 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode

interleaved25.Symbology = KeepAutomation.Barcode.Symbology.Interleaved2of5
interleaved25.CodeToEncode = "1234567"
interleaved25.X = 2
interleaved25.WideNarrowRatio = 2.5
interleaved25.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif()
interleaved25.generateBarcodeToImageFile("C://interleaved25-vb-net.gif")

How to Create Interleaved 2 of 5 with Wide to Narrow Ratio in .NET WinForms

Wide to narrow ratio means the ratio between wide bar and narrow bar. The value is 2.0 - 3.0 inclusive, default is 2. If needed, users are able to set "WideNarrowRatio" property to change wide to narrow ratio of Interleaved 2 of 5.
interleaved2of5.WideNarrowRatio = 2.0f; 
interleaved2of5.WideNarrowRatio = 2.0f