ceTe.DynamicPDF.PageElements.BarCoding Namespace | Page Elements | Programming with Generator for .NET

DynamicPDF™ Generator for .NET has built-in support for Bar Codes. These Bar Codes are rendered using vector based graphics and can be scaled to any size without loosing resolution. The bar codes are page elements and can be placed on a page in the same manner as other page elements. The following Bar Codes are supported:

Adding a Bar Code to a page is very straight forward:

[Visual Basic]
' Add a bar code to a page.
MyPage.Elements.Add( New Code128( "Barcode Data", 0, 0, 20 ) )
[C#]
// Add a bar code to a page.
page.Elements.Add( new Code128( "Barcode Data", 0, 0, 20 ) );

See Also 

ceTe.DynamicPDF.PageElements.BarCoding Namespace | Page Elements | Programming with Generator for .NET