|
No. 1 Bar Code SDK Provider for Java/.NET/Objective-C Professionals
|
Generating Barcode Code 2 of 5 in .NET is one of the functions in OnBarcode's
.NET Barcode Generators, which supports
creating & printing Code 2 of 5 and 30+ other linear & 2D bar codes for C#, VB.NET & ASP.NET applications.
OnBarcode develops several .NET Barcode Generation components for different .NET development environments:
Barcode Generation in ASP.NET
- Creating barcodes in ASP.NET Web applications
Barcode Generation in Windows Forms
- Printing barcodes in C#, VB.NET Windows Forms applications
Barcode Generation in Reporting Service
- Drawing barcodes in Microsoft Reporting Service 2005 & 2008
In telecommunication, a two-out-of-five code is an m of n code that provides exactly ten possible combinations, and thus is popular for representing decimal digits using five bits.
.NET Code 2 of 5 Generator encodes:
Generating barcode Code 2 of 5 in C# Class example (C# Source Code to Create Code 2 of 5 barcodes)
Linear barcode = new Linear();
barcode.Type = BarcodeType.CODE39;
barcode.Data = "0123456789";
barcode.drawBarcode("C://code39.gif");
Generating barcode Code 2 of 5 in VB.NET Class example
Dim barcode As OnBarcode.Barcode.Linear
barcode = New OnBarcode.Barcode.Linear()
barcode.Type = OnBarcode.Barcode.BarcodeType.CODE39
barcode.Data = "0123456789"
barcode.drawBarcode("C://code39-in-vbnet.gif")
Creating barcode Code 2 of 5 in C# Class example
Linear barcode = new Linear();
barcode.Type = BarcodeType.CODE39;
barcode.Data = "0123456789";
barcode.drawBarcode("C://code39.gif");
Creating barcode Code 2 of 5 in VB.NET Class example
Dim barcode As OnBarcode.Barcode.Linear
barcode = New OnBarcode.Barcode.Linear()
barcode.Type = OnBarcode.Barcode.BarcodeType.CODE39
barcode.Data = "0123456789"
barcode.drawBarcode("C://code39-in-vbnet.gif")
Using C#, please call one of the following methods to draw barcode in the memory
public void drawBarcode(Graphics graphics);
public void drawBarcode(string filename);
public Bitmap drawBarcode();
public void drawBarcode(Stream fileStream);
Using VB.NET, please call one of the following methods to draw barcode in the memory
Public Sub drawBarcode(ByRef graphics As Graphics)
Public Sub drawBarcode(ByVal filename As String)
Public Function drawBarcode() As Bitmap
Public Sub drawBarcode(ByRef fileStream As Stream)
| Category | Class Properties | WebStream Properties | Default | Comments | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Basic | Data | DATA | "12345" | value to encode | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Type | TYPE | BarcodeType.CODE128 (7) | linear barcode type, default is Code128.
Code 2 of 5 type value is BarcodeType.CODE2OF5 (2). |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| AddCheckSum | ADD-CHECK-SUM | true | AddCheckSum property is not applied here. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Code 2 of 5 Special |
N | N | 2.0 | Wide/narrow ratio, 2.0 - 3.0 inclusive, default is 2. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Size Related | UOM | UOM | UnitOfMeasure.PIXEL (0) | Unit of meature for all size related setting in the library.
Valid values: UnitOfMeasure.PIXEL (0), UnitOfMeasure.CM (1), UnitOfMeasure.INCH (2) |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| X | X | 1 | width of barcode module (narrow bar), default is 1 pixel | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Y | Y | 60 | barcode module height, default is 60 pixel | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| BarcodeWidth | BARCODE-WIDTH | 0 | barcode image width | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| BarcodeHeight | BARCODE-HEIGHT | 0 | barcode image height | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| LeftMargin | LEFT-MARGIN | 0 | image left margin | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| RightMargin | RIGHT-MARGIN | 0 | image right margin | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| TopMargin | TOP-MARGIN | 0 | image top margin | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| BottomMargin | BOTTOM-MARGIN | 0 | image bottom margin | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Resolution | RESOLUTION | 72 | in DPI | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Rotate | ROTATE | Rotate.Rotate0 (0) | valid values:
Rotate.Rotate0 (0), Rotate.Rotate90 (1), Rotate.Rotate180 (2), Rotate.Rotate270 (3) |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Text & Color |
ShowText | SHOW-TEXT | true | If true, display barcode data text, otherwise do not display. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ShowCheckSumChar | SHOW-CHECK-SUM-CHAR | true | If true, display the check sum character in the end of data, if there is a check sum. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| TextFont | TEXT-FONT | Arial, Plain, 11 | Barcode text font style.
default is: new Font("Arial", 9f, FontStyle.Regular); Using website, using: &TEXT-FONT=Arial|9|regular |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| TextMargin | TEXT-MARGIN | 6 | Space between barcode and barcode data text, default is 6 pixel | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| In WebStream query string, please use int value for Enums, "true" and "false" for bool. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|