Paxar 6039 Printer User Manual


 
Scanning Functions 4-5
LinearSecurity
Description
Sets the Linear Security, which is how many times to scan the same
barcode to determine a successful read. Select a higher level for lower
quality bar codes.
Syntax
public int LinearSecurity
Parameters
LinearSecurity 1 – 4 scans
Default: 1
Return Values
None
Example C#
using Ultra;
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
// Instantiate class
GENERAL. LinearSecurity = 1;
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.CommitChanges();
//--Save Changes to the Scanner Configuration
Example VB.NET
Imports Ultra
Dim GENERAL As New Scan.General ' Instantiate class
Dim CONTROL As New Scan.Control ' Instantiate class
GENERAL.LinearSecurity = 1
CONTROL.CommitChanges()
’ Save Changes to the Scanner Configuration