Paxar 6039 Printer User Manual


 
Scanning Functions 4-13
Example C#
using Ultra;
Ultra.Scan.Code128 C128 = new Ultra.Scan.Code128();
// Instantiate class
C128.Enable = true; // Enable Code 128 Symbology
C128.ISBT128 = true; // Enable ISBT128
C128.UCCEAN128 = true; // Enable UCCEAN128
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.CommitChanges(); //--Save Changes to the Scanner
// Configuration
Example VB.NET
Imports Ultra
Dim C128 As New Scan.Code128 ' Instantiate class
Dim CONTROL As New Ultra.Scan.Control ' Instantiate class
C128.Enable = True ' Enable Code128 Symbology
C128.ISBT128 = True ' Enable ISBT128
C128.UCCEAN128 = True ' Enable UCCEAN128
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration