.NET barcode printing library  >  printing barcode with C# in visual studio  >  MSI Plessey bar code c# generator


MSI Plessey Barcode Generator C# Library

encode, generate MSI Plessey bar code with C# for .NET programs in Visual Studio


Overview

Keepdynamic.com supply MSI Plessey C# .NET Barcode Generator for the creation of MSI Plessey barcodes in your C# .NET framework projects.

Related solutions for generating MSI Plessey barcode image in C#.NET



Features

Technologies of MSI Plessey C# .NET Creator

C# .NET MSI Plessey Barcode Creator helps you generate MSI Plessey 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 MSI Plessey in C# .NET classes and console applications is easy. Using this C# .NET Barcode Creator MSI Plessey 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 MSI Plessey Barcode Creator

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

Customization of C# .NET MSI Plessey Barcodes

Full functional features of C# .NET MSI Plessey Barcode Creator make the operation of barcode easy and simple. Using this MSI Plessey creator, the appearance of the human readable characters on MSI Plessey barcodes can be enabled or disabled. MSI Plessey 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 MSI Plessey.

C# .NET MSI Plessey Source code and Developer License

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


Generate MSI Plessey in C#

//Create a new barcode object in C#.NET,
//Change the symbology to MSI barcode type

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

/*
 Assign the value that are encoded into MSI barcode symbology.

 Encodable character set of MSI is as follow,
   Numeric characters: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

 MSI barcode encodes variable data
*/

barcode.CodeText = "1234567890";

//Disenable the checksum for MSI symbology for the check digit is optional to MSI
barcode.EnableChecksum = false;

//Set the MSI barcode graphic measurements as Pixel
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel;

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

//Set the margins around the MSI barcode symbology
barcode.LeftMargin = 0;
barcode.RightMargin = 0;
barcode.TopMargin = 0;
barcode.BottomMargin = 0;

//Set the resolution of MSI barcode image that is drawn to,
//Change the MSI barcode image orientation

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

//Display the characters encoded into the MSI barcode symbology
//Set the font style of characters encoded into the MSI barcode

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

//Set MSI barcode drawing image format to PNG in C#
//Generate MSI barcode image in C#

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