Description

Represents a Code 128 bar code.

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

Remarks

This class can be used to place a Code 128 bar code on a page.

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.AddCode128( "Code 128 Bar Code.", 50, 50, 48 ) 
    ' Draw the PDF 
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing 
%>

See Also

Code128 Members