C#. Code 11 Generator Data Encoding Tutorial
sample source code to input valid data and generate linear Code 11 images in C# .NET
C# Code 11 Introduction
Code 11, known as Code11, USD-8, USD8, is a high-density numeric-only linear barcode symbology.
C# Code 11 is an easy-to-use barcode generation dill for .NET programming which supports generating Code 11 images in various .NET platforms, such as ASP.NET barcode generator web control, .NET Winforms barcode generator control and Reporting service barcode generation component. C# Code 11 is compatible with the latest ISO standards.
OnBarcode C# Barcode Generator is designed to generate, create Code 11 and other linear & 2d barcodes in Microsoft Word.
Here are some more tutorials for C# Code 11 generation concerning size & image setting.
How to generate, print barcode using .NET, Java sdk library control with example project source code free download:
Code 11 Data Encoding for C# Class & console application
C# Code 11 data encoding can be divided into two parts, which are C# Code 11 character set and C# Code 11 data length.
Code 11 Valid Character Set in C# ASP.NET web projects
Code 11 is a variable linear barcode, which can encode following data:
Numeric Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Special Digits: - (Dash)
With encoding C# Code 11 valid data, C# Code 11 generation component can generate 3 types of data Code 11 images in C# development.
Encoding Only Numeric digits
C# Code 11 generator can only encode numeric digits to generate Code 11 barcode image in C# .NET development:
Linear code11 = new Linear();
code11.Type = BarcodeType.CODE11;
code11.Data = "3213211";
Encoding Only Special Letters
C# Code 11 generator supports encoding only slash letters for creating Code 11 images with C# .NET Winforms Code 11 generator:
Linear code11 = new Linear();
code11.Type = BarcodeType.CODE11;
code11.Data = "------";
Encode Mixed Letters
C# Code 11 generation SDK is compatible with mixed numeric digits and special letters together to draw your needed Code 11 images:
Linear code11 = new Linear();
code11.Type = BarcodeType.CODE11;
code11.Data = "121-1212";
Code 11 Valid Length on C#.NET Winforms programming
Code 11 is a variable data data length barcode type. C# Code 11 can encode 3 types of data length to create high quality Code 11 in various C# projects.
Encoding 5 digits
C# Code 11 generation dill can draw Code 11 image with 5 digits length in C# projects:
Linear code11 = new Linear();
code11.Type = BarcodeType.CODE11;
code11.Data = "321-1";
Encoding 11 Digits
C# Code 11 generation library can encode 11 digits to output Code 11 images for C# development:
Linear code11 = new Linear();
code11.Type = BarcodeType.CODE11;
code11.Data = "123-12345-1;
Encode 17 Digits
C# Code 11 generation component allows encoding 17 digits to create high quality Code 11 images in C#.NET applications:
Linear code11 = new Linear();
code11.Type = BarcodeType.CODE11;
Code 11.Data = "78945619876543210";