See Also

Pdf417 Members  | ceTe.DynamicPDF.PageElements.BarCoding Namespace

Requirements

Namespace: ceTe.DynamicPDF.PageElements.BarCoding

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ceTe.DynamicPDF (in ceTe.DynamicPDF.dll)

Language

Visual Basic

C#

Show All

Represents Pdf417 barcode.

For a list of all members of this type, see Pdf417 members.

Object Model


Inheritance Hierarchy

System.Object
   ceTe.DynamicPDF.PageElement
      ceTe.DynamicPDF.PageElements.BarCoding.Dim2Barcode
         ceTe.DynamicPDF.PageElements.BarCoding.Pdf417
            ceTe.DynamicPDF.PageElements.BarCoding.MacroPdf417

Syntax

[Visual Basic]
Public Class Pdf417    Inherits Dim2Barcode    Implements ICoordinate 
[C#]
public class Pdf417 : Dim2Barcode, ICoordinate 

Remarks

This class can be used to generate Pdf417 barcode symbol.

Example

The following example will place a Pdf417 bar code on the page.

[Visual Basic] 

Imports System
Imports ceTe.DynamicPDF
Imports ceTe.DynamicPDF.PageElements.BarCoding

Module MyModule

    Sub Main()

        ' Create a PDF Document
        Dim MyDocument As Document = New Document

        ' Create a Page and add it to the document
        Dim MyPage As Page = New Page
        MyDocument.Pages.Add(MyPage)

        ' Create a Pdf417 bar code
        Dim pdf417 As Pdf417 = New Pdf417("Pdf417 Bar code", _
            10.0f, 10.0f, 2, 2.0f)

        ' Add the Pdf417 bar code to the page
        MyPage.Elements.Add(pdf417)

        ' Save the PDF
        MyDocument.Draw("C:\MyDocument.pdf")

    End Sub
End Module

[C#] 

using System; 
using ceTe.DynamicPDF; 
using ceTe.DynamicPDF.PageElements.BarCoding; 
 
class MyClass 

    static void Main() 
    { 
        // Create a PDF Document 
        Document document = new Document(); 
 
        // Create a Page and add it to the document 
        Page page = new Page(); 
        document.Pages.Add( page ); 
 
        // Create a Pdf417 bar code 
        Pdf417 pdf417 = new Pdf417( "Pdf417 Bar code", 
            10.0f, 10.0f, 2, 2.0f ); 
 
        // Add the Pdf417 Bar code to the page 
        page.Elements.Add( pdf417 ); 
 
        // Save the PDF 
        document.Draw( @"C:\MyDocument.pdf" ); 
    } 
}

Licensing

This class is a DynamicPDF Generator Enterprise Edition feature. One of the following licenses is required for non-evaluation usage:

Requirements

Namespace: ceTe.DynamicPDF.PageElements.BarCoding

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: ceTe.DynamicPDF (in ceTe.DynamicPDF.dll)

See Also

Pdf417 Members  | ceTe.DynamicPDF.PageElements.BarCoding Namespace

 

 


© Copyright 2007, ceTe Software