Description

Represents an EAN/JAN 8, 5 digit supplement bar code.

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

Remarks

This class can be used to place an EAN/JAN 8, 5 digit supplement 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.AddEan8Sup5( "1234567012345", 50, 50 ) 
    ' Draw the PDF 
    MyDocument.DrawToWeb 
    Set MyPage = Nothing 
    Set MyDocument = Nothing  
%> 

See Also

Ean8Sup5 Members