See Also

Code25 Members

Description

Represents a Code 2 of 5 barcode.

For a list of all members defined in this module, see Code25 members.

Remarks

This class can be used to place a Code 2 of 5 barcode on a page.

Interfaces

Implemented InterfaceDescription
Object 

Example

[ASP - VBScript] 

<% 
    ' Create a PDF Document 
    Dim MyDocument  
    Set MyDocument = Server.CreateObject( "DynamicPDF.Document" )  
    ' Create a Page and add it to the document 
    Dim MyPage  
    Set MyPage = MyDocument.AddPage() 
    ' Create a bar code 
    Dim MyBarcode 
    Set MyBarcode = MyPage.AddCode25( "1234567890", 50, 50, 48 ) 
    ' Draw the PDF 
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%>

See Also

Code25 Members

 

 


© Copyright 2007, ceTe Software