Scanning Functions 4-7
Preamble
Description
Sets the Preamble, which specifies the characters to preface returned
data from scanning. The Preamble can be up to twenty user-defined
characters.
Syntax
public string Preamble
Parameters
Preamble up to 20 characters
Default: Empty
Return Values
None
Example C#
using Ultra;
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
// Instantiate class
GENERAL.Preamble = "[";
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.Preamble = "["
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration