3-2 Programmer’s Manual
Stock
Calibrate
Description
Calibrates the supplies in the printer and gives the supply information to
the Print subsystem.
Operators can load supplies (as described in the Operator’s Handbook)
before running an application, but they cannot calibrate the supplies until
the application calls this function. In general, you should display a
prompt (“Load your supplies,” for example) and require the operator to
press a key, such as the trigger, to call this function.
Do not use this function when using fax paper because it has no black
mark to detect.
Syntax
public void Calibrate()
Parameters
None
Return Values
None
Example C#
using Ultra;
{
Ultra.Print rPrint = new Print(); // Instantiate class
rPrint.Calibrate(); // Calibrate Supply
}
Example VB.NET
Imports Ultra
Dim rPrint As New Print ' Instantiate class
rPrint.Calibrate(); ' Calibrate Supply