Scanning Functions 4-3
BdirRedundancy
Description
Enables Bi-Directional Redundancy, which specifies that good scans must
occur in both directions (forward and reverse) for the scan to be
complete.
Syntax
public bool BdirRedundancy
Parameters
BdirRedundancy TRUE Scans must occur in both directions
FALSE Default
Return Values
None
Example C#
using Ultra;
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
//Instantiate Class
GENERAL.BdirRedundancy = false;
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.BdirRedundancy = False
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration