.NET Barcode Generator
for WinFroms Application in C#.NET
Winforms .NET Barcode Generation DLL
Barcode .NET WinForms > Barcode in .NET WinForms > PDF417
2D Barcode in .NET WinForms
Data Matrix in C#
PDF417 in C#
QR Code in C#
PDF-417 .NET Barcode Generator/Library for C#.NET Class
PDF 417 Barcode Generator/Library in C#.NET - Overview
Aspper Winforms PDF-417 .NET barcode generator is the most reliable barcode generator which completely built in C#.NET. This barcode library provides easy-to-configure assistant tool which lets you easily inserting dynamic barcode PDF-417 and truncated PDF-417 into .NET Framework Applications.

.NET Barcode Generator SDK library includes ASP.NET Barcode Generator, C# Barcode Generator, VB.NET Barcode Generator, QR Code Generator .NET, QR Code Generator ASP.NET, QR Code Generator C#, QR Code Generator VB.NET, PDF-417 .NET, PDF-417 VB.NET, PDF-417 ASP.NET, PDF-417 C#.
PDF 417 barcode library helps you to add barcodes easily into Visual C# .NET projects. Users are entitled to change the parameters of the barcodes. Aspper PDF 417 barcode generator provides royalty-free perpetual developer licenses and optional source code.
Aspper.com helps .NET developers to generate and print most popular dynamic linear and 2D barcodes in Windows Forms applications using C# barcode class library.

Linear barcodes: Code 39, Code 128, EAN-13, GS1-128,UPC-A

2D barcodes: Data Matrix,QR Code
PDF 417 Barcode Generator for C#.NET - Benefits
PDF 417 Barcode Generator/Library for .NET Applications
Aspper.com provides complete information of User Guide for Visual C#solution to generate dynamic PDF 417 barcodes into .NET applications and report solution.
How to Create Dynamic PDF 417 Barcodes on C#.NET Application

Generate and Draw PDF 417 1D Barcodes in C#.NET Classes

// Create linear barcode object
Pdf417 = new BarCode();
// Set barcode symbology type to PDF 417
Pdf417 = Symbology.DataMatrix
// Set barcode data to encode
Pdf417 = "0123456789"
// Draw & print generated barcode to png image file
Pdf417.drawBarcode("csharp-Pdf417.png")
Basic property setting of PDF 417
// Encoded data setting
Pdf417.Data = "01234567891";
// Barcode symbology type setting
pdf417.Symbology = Symbology. PDF417;
// Unit of meature for all size related setting in the library.
pdf417.UOM = UnitOfMeasure.PIXEL;
//Set the bar module width (X), default is 2 pixel;
pdf417.X = 2;
// Set the bar module height (Y), default is 75 pixel;
pdf417.Y = 75;
pdf417. MarginLeft = 0;
pdf417. MarginRight = 0;
pdf417. MarginTop = 0;
// Set left, right, top, bottom margins of barcode images. Defaults are 0.
pdf417. MarginBottom = 0;
// Image resolution setting, default is 72 dpi.
pdf417.Resolution = 72;
// 4 options of barcode orientation are: 0, 90, 180, 270 degrees
pdf417. Angle = Angle. Degree0;
// If true, apply checksum digit characters in the input data. Default is false.
pdf417.AddCheckSum = true;
Format setting for PDF 417 with C#.NET
// If true, display the human readable text under the barcode
pdf417.ShowText = true;
// If true, display checksum digit
pdf417. ShowCheckSum Char = true;
//Text font setting
pdf417.TextFont = new Font("Arial", 9f, FontStyle.Regular);
// Set the space between barcode and text. Default is 6 pixel.
pdf417.TextMargin = 6;
Color setting for PDF 417 with C#.NET
// Background color setting, Default is white.
pdf417. BackgroundColor = white;
// Foreground color setting, Default is black.
pdf417. ForegroundColor = black;
PDF 417 Special Setting
// If true, apply the tilde character "~" to specify special characters in the input data.
pdf417. EnableTilde = true;
// Encoding mode setting. Default is PDF417DataMode.Text
Valid values are:
PDF417DataMode.Auto
PDF417DataMode.Text
PDF417DataMode.Byte
PDF417DataMode.Numeric
PDF417DataMode.Customer
pdf417. PDF417DataMode = PDF417DataMode.Text
// Error correction level setting. Valid values ranges from
PDF417ECL.ECL_0 to PDF417ECL.ECL_8, default is PDF417ECL.ECL_2.

pdf417. PDF417ECL = PDF417ECL.ECL_2;
// Count total symbol numbers setting. Default is 0.
pdf417. GroupItemCount = 0;
// Group function setting. Default is false.
pdf417. GroupEnabled = false;
// Locate position of the current symbol in sequence. Default is 0.
pdf417. GroupItemId = 0;
// Count row numbers setting. Default is 3. Valid value ranges from 3 to 90.
pdf417. PDF417RowCount = 3; pdf417.
// Count columns numbers setting. Default is 5. Valid value ranges from 1 to 30.
pdf417ColumnCount = 5; pdf417.
// If true, the right hand side of the symbol is removed or truncated. Default is false.
PDF417Truncated = false;
// set the X to Y ratio. Default is 0.33333f.
pdf417. PDFXtoYRatio = 0.33333f;

Drag and Drop PDF 417 Linear Barcodes to C#.NET Form