4-40 Programmer’s Manual
ScannerMode
Description
Retrieves the current scanner mode data containing the default values
and saves the reconfigured settings to the scan engine.
Syntax
public eSCANMODE ScannerMode;
Parameters
None
Return Values
SOM_MOMENTARY
The scanner is on when the trigger is pressed and
goes off when the trigger is released.
SOM_CONTINUOUS
The scanner is always on. A good scan causes the
scanner to reset and continue scanning.
SOM_COMPATIBLE
The scanner operates in Monarch® 6037
compatible mode, which means the scanner is on
when the trigger is pressed and goes off after a
successful scan or a predetermined timeout period.
Default
Example C#
using Ultra;
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.ScannerMode =
Ultra.Scan.Control.eSCANMODE.SOM_COMPATIBLE;
// Enable Compatibility with 6037
CONTROL.CommitChanges(); //--Save Changes to the Scanner
// Configuration