barcode creator for .NET  >  C# barcode encoder  >  generate code11 with C#


C# Code 11 Barcode Generator for .NET Apps

generate, insert code11 bar code in C# for .NET framework programs


Overview

Keepdynamic.com supply Code 11 C# .NET Barcode Generator for the creation of Code-11 barcodes in your C# .NET framework projects.

Related solutions for generating Code 11 in C#.NET



Features

Technologies of Code 11 C# .NET Creator

C# .NET Code-11 Barcode Creator helps you generate Code-11 barcodes that you probably need in your C# .NET applications. It is entirely built in .NET 2.0 and supports .NET 2.0, 3.0, 3.5, 4.0. Bar coding of Code-11 in C# .NET classes and console applications is easy. Using this C# .NET Barcode Creator Code-11 barcodes can also be easy to be generated in ASP.NET web projects, Microsoft Windows Forms, SQL Server Reporting Services (SSRS), and Crystal Reports.

Barcode images generated by C# .NET Code-11 Barcode Creator

Image formats supported by this Code-11 C#.NET barcode Creator include gif, jpeg, png, bmp, and tiff. Barcodes Code-11 can be rotated to 0, 90, 180, or 270 degrees based on specific requirements. The image size and other properties Code-11 may be adjusted to meet the users' specifications. High quality barcodes Code-11 are supported by this product without any distortion. Bearer bar for Code-11 barcode are easy to be generated

Customization of Code-11 Barcodes

Full functional features of C# .NET Code-11 Barcode Creator make the operation of barcode easy and simple. Using this Code-11 creator, the appearance of the human readable characters on Code-11 barcodes can be enabled or disabled. Code-11 C# .NET Barcode Creator provided the functionality of configuring the colors of foreground and background. It is easy to encode the returns, tabs and other functions into your C# .NET applications. Bearer bar is also easy to be generated for Code-11.

Code 11 Source code and Developer License

Complete C# .NET Code-11 Barcode Creator source code is provided with the purchasing of unlimited developer license. Royalty is free if purchasing a developer license.


Create Code 11 in C#.NET

/*
 Create a new barcode object in C#
 and select the barcode symbology as Code 11 from the barcode type list
*/

BarCode barcode = new BarCode();
barcode.SymbologyType = SymbologyType.Code11;

/*
 Assign data value to Code 11.

 Encodable data set of Code 11 is as follow,
   Numeric digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
   Special symbol: Dash(-)

 Code 11 symbology encodes any length of data characters
*/

barcode.CodeText = "-1234567890123";

/*
 Enbable the checksum option for Code 11
 so that the barcode engine calculates check digit to Code 11 automatically
*/

barcode.EnableChecksum = true;

//Set the barcode graphic measurements as Pixel for Code 11
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel;

//Assign values of bar width and bar height to Code 11 barcode
barcode.X = 2;
barcode.Y = 75;

//Set the margins around the Code 11 symbol
barcode.LeftMargin = 0;
barcode.RightMargin = 0;
barcode.TopMargin = 0;
barcode.BottomMargin = 0;

/*
 Set the resolution of Code 11 image that is drawn to,
 and change the orientation of Code 11 barcode image
*/

barcode.Resolution = 72;
barcode.Rotate = Rotate.Rotate0;

/*
 Display the characters encoded into the Code 11 symbology and
 set the font style of the characters encoded into Code 11
*/

barcode.DisplayCodeText = true;
barcode.CodeTextFont = new Font("Arial", 11f, FontStyle.Regular);

/*
 Set Code 11 barcode drawing image format to PNG in C# and
 generate Code 11 image in C#
*/

barcode.Format = ImageFormat.Png;
barcode.drawBarcode("C://barcode-code11-csharp.png");