Scanning Functions 4-35
DataMode
Description
Retrieves the Data Receive Mode from the application and saves the
reconfigured settings to the scan engine.
Syntax
public eDATAMODE DataMode;
Parameters
DataMode The supply type. Values are
DRM_WMCHAR
The application receives data by
the keyboard buffer. Default
DRM_SMSCANCHAR
The application receives data by
the scanner through a special
message.
Return Values
None
Example C#
using Ultra;
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
Scanner.DataMode = Ultra.Scan.Control.eDATAMODE.DRM_WMCHAR;
// Data from Keyboard buffer
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.CommitChanges(); //--Save Changes to the Scanner
// Configuration