Paxar 6039 Printer User Manual


 
4-8 Programmer’s Manual
Postamble
Description
Sets the Postamble, which is the data to be sent after each scanned
barcode. The Postamble can be up to twenty user-defined characters.
Syntax
public string Postamble
Parameters
Postamble up to 20 characters
Default: Empty
Return Values
None
Example C#
using Ultra;
Ultra.Scan.General GENERAL = new Ultra.Scan.General();
// Instantiate class
GENERAL.Postamble = "]";
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.Postamble = "]"
CONTROL.CommitChanges()
' Save Changes to the Scanner Configuration