Paxar 6039 Printer User Manual


 
Scanning Functions 4-39
DisableScanning
Description
Disables the scanner from scanning the defined bar codes.
Syntax
public void DisableScanning();
Parameters
None
Return Values
None
Example C#
using Ultra;
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.DisableScanning(); // Disable Scanning
CONTROL.CommitChanges(); //--Save Changes to the Scanner
// Configuration
Example VB.NET
Imports Ultra
Dim CONTROL As New Ultra.Scan.Control ' Instantiate class
CONTROL.DisableScanning() ' Disable Scanning
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration