Description
Represents an EAN/JAN 13, 2 digit supplement bar code.
For a list of all members defined in this module, see Ean13Sup2 members.
Remarks
This class can be used to place an EAN/JAN 13, 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.AddEan13Sup2( "12345678901212", 50, 50 ) ' 2 digit Supplemental Value MyBarcode.SupplementalValue = "24" ' Draw the PDF MyDocument.DrawToWeb Set MyPage = Nothing Set MyDocument = Nothing %>
|
See Also
Ean13Sup2 Members