Printing Functions 3-7
Printing
Feed
Description
Feeds a label through the printer.
Syntax
public void Feed()
Parameters
None
Return Values
None
Example C#
using Ultra;
{
Ultra.Print rPrint = new Print(); //Instantiate class
rPrint.Feed(); // Feed a Label
}
Example VB.NET
Imports Ultra
Dim rPrint As New Print ' Instantiate class
rPrint.Feed() ' Feed a Label