Description

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

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

Remarks

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

See Also

Ean8Sup2 Members