BizCode Barcode Generator for .NET Ultimate
The most robust & powerful barcode generating SDK for Microsoft .NET Framework
Quick Overviews
  • Powerful barcode creating DLL
  • Completely run in VB.NET
  • 100% sample code provided
  • Multiple barcode formats
  • Full controls provided
How to Set PDF-417 Size in VB.NET
VB.NET PDF-417 Generator is the most professional .NET component equipped with advanced PDF-417 barcode generating and printing features. It can be used in many .NET Framework that supports Visual Basic.NET to be used.
VB.NET PDF-417 Generator creates PDF-417 barcodes accurately according to its barcode specification ISO / IEC 15438 (2nd edition 2006-06-01). Macro PDF-417 and Compact PDF-417/Truncated PDF-417 barcode can also be drawn in VB.NET projects with a set of flexible sizing options provided. Here is a user manual for resize PDF-417 barcode using Visual Basic.NET. You may find other user manuals of PDF-417 image and data on:
PDF-417 Size Related Properties

Row Count and Column Count

Sizing properties RouCount and ColumnCount are provided by Barcode Generator for .NET Ultimate for users to change the total number of rows and column respectively in PDF-417 barcodes.

Truncated PDF-417

Image property Truncated is provided by Barcode Generator for .NET Ultimate for users to generate Compact PDF-417/Truncated PDF-417 barcode, which reduces some of the row overhead to improve the symbol density.

Barcode Unit

Sizing property BarcodeUnit is provided by Barcode Generator for .NET Ultimate for users to define the unit measurement (pixel, cm, or inch) to measure all barcode size related properties in PDF-417 barcode.

Quiet Margin

Sizing properties QuietMargin are provided by Barcode Generator for .NET Ultimate for users to manage the quiet margin of top, bottom, right and left in PDF-417 barcode.

Bar Width

Sizing property BarWidth is provided by Barcode Generator for .NET Ultimate for users to control the width of modules in PDF-417 barcodes.

Barcode Width & Height

Sizing properties BarcodeWidth and BarcodeHeight are provided by Barcode Generator for .NET Ultimate for users to set the whole barcode width and height of PDF-417 barcode in accordance with users’ needs.
Customize PDF-417 Barcode Sizes in VB.NET
Make sure that your have installed those programs before you control PDF-417 barcode size in VB.NET:
Customize PDF-417 Barcode Size in VB.NET
Dim barcode As BusinessRefinery.Barcode.PDF417 = 
New BusinessRefinery.Barcode.PDF417()
barcode.Code = "0123456789"

' Change PDF-417 barcode unit measuirement in Pixel, Inch and Cm
barcode.BarcodeUnit = BarcodeUnit.PIXEL

' Select PDF-417 rows and columns
barcode.RowCount = 3
barcode.ColumnCount = 9

' Specify PDF-417 barcode width & height
barcode.BarcodeHeight = 100
barcode.BarcodeWidth = 500

' Specify the width of module in PDF-417
barcode.BarWidth = 3

' Control PDF-417 barcode top margin, bottom margin, right margin and
left margin size

barcode.BottomMargin = 7
barcode.TopMargin = 7
barcode.LeftMargin = 5
barcode.RightMargin = 5
barcode.drawBarcode2SizeFile("c:/pdf-417-vb-net.gif")