Paxar 6039 Printer User Manual


 
4-2 Programmer’s Manual
General Class
AimDuration
Description
Sets the AIM Duration, which is the duration of the aiming beam when the
scanner is activated.
Syntax
public int AimDuration
Parameters
AimDuration 00 - 99 tenths of a second
0 disables. Default
Return Values
None
Example C#
using Ultra;
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
//Instantiate Class
GENERAL.AimDuration = 0;
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.AimDuration = 0
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration