- Home
- Products
- Integration
- Tutorial
- Barcode FAQ
- Purchase
- Company
C# Codabar Generator Library SDK Integration & Developer GuideGenerate barcode codabar images in Visual C# .NET with complete sample C# source code
Index
C# Codabar Generator IntroductionCodabar, known as Codeabar, Ames Code, Monarch, Code 2 of 7, Rationalized Codabar, ANSI/AIM BC3-1995 or USD-4, is a discrete, self-checking linear barcode symbology. C# Codabar Generator is one of the functions in OnBarcode's
Barcode for .NET Generation Controls, which supports
generating & printing Codabar and 20+ other linear & 2D bar codes for C# applications.
Codabar Generator library, SDK & application OnBarcode provides several Codabar Generator components and software, including .NET Codabar, Java Codabar, ASP.NET Codabar, VB.NET Codabar, Codabar Generator. This document is providing a detailed C# source code about generating Codabar barcodes in C# class using C# Barcode generation component. Complete Codabar custmoization settings is included in C# Codabar generation guide. Barcode SDK which you may also be interested in OnBarcode offers several ASP.NET, VB.NET Bar Code Generator components and software. .NET Barcode Generator Component includes: .NET QR Code, .NET Data Matrix, .NET PDF-417, .NET Code 39, .NET Code 128. VB.NET Barcode Generator SDK includes: VB.NET QR Code, VB.NET Data Matrix, VB.NET Code 128, VB.NET EAN, VB.NET UPC ASP.NET Barcode Generator Control includes: ASP.NET PDF-417, ASP.NET Code 39, ASP.NET Code 128, ASP.NET EAN, ASP.NET UPC Generate Codabar Barcodes in C#Generating Codabar barcode in C# class example: Linear barcode = new Linear(); // Codabar Barcode Basic Settings barcode.Type = BarcodeType.CODABAR; /* Codabar Valid data char set: - (Dash), $ (Dollar), : (Colon), / (Slash), . (Point), + (Plus) 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 */ barcode.Data = "112233445566"; // Codabar Start & Stop Char barcode.CodabarStartChar = CodabarStartStopChar.A; barcode.CodabarStopChar = CodabarStartStopChar.A; // Codabar Image Size Related Settings barcode.UOM = UnitOfMeasure.PIXEL; barcode.X = 1; barcode.Y = 80; barcode.LeftMargin = 0; barcode.RightMargin = 0; barcode.TopMargin = 0; barcode.BottomMargin = 0; barcode.Resolution = 96; barcode.Rotate = Rotate.Rotate0; // Codabar Text Settings barcode.ShowText = true; barcode.TextFont = new Font("Arial", 9f, FontStyle.Regular); barcode.TextMargin = 6; // Image format setting barcode.Format = ImageFormat.Gif; barcode.drawBarcode(@"c:\codabar.gif"); More C# Barcode Generation Tutorials: |