Scanning Functions 4-43
Trigger
Description
Initiates a scan, placing the scanned data in the scanner buffer. If the
LED on the keypad turns green, the scan was successful. This function
works with each scanner.
Syntax
public void Trigger();
Parameters
None
Return Values
None
Example C#
using Ultra;
Ultra.Scan.Control CONTROL = new Ultra.Scan.Control();
// Instantiate class
CONTROL.Trigger(); // Start Scanning
CONTROL.CommitChanges(); //--Save Changes to the Scanner
// Configuration
Example VB.NET
Imports Ultra
Dim CONTROL As New Ultra.Scan.Control ' Instantiate class
CONTROL.Trigger() ' Start Scanning
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration