7197 Series II Owner’s Guide Chapter 6: Commands
August 2011
92
Print and Feed n Lines
ASCII: ESC d n
Hexadecimal: 1B 64 n
Decimal:
27 100 n
Value of n:
Number of lines to be printed and fed.
Range of n:
1 – 255 (0 is interpreted as 1 on the receipt station)
Prints one line from the buffer and feeds paper n lines at the current line height.
Example:
MSComm1.Output = Chr$(&H1B) & Chr$(&H64) & Chr$(n)
Set Horizontal and Vertical Minimum Motion Units
ASCII:
GS P x y
Hexadecimal:
1D 50 x y
Decimal:
29 80 x y
Value of x:
Horizontal
Value of y: Vertical
Range of x:
0 - 255
Range of y:
0 - 255
Default: of x:
203
Default: of y:
203
Sets the horizontal and vertical motion units to 1/x inch and 1/y inch respectively.
When x or y is set to 0, the default setting for that motion unit is used.
The default horizontal motion is x = 203.
Example:
MSComm1.Output = Chr$(&H1D) & Chr$(&H50) & Chr$(x) & Chr$(y)