Citizen iDP3221 Photo Scanner User Manual


 
iDP3221 User’s Manual
41
CITIZEN
LF
Function] Printing and paper feed
[Code] <0A>H
[Outline] Prints data inside the input buffer and feeds lines based on the line feed amount having been
set.
• The head of the line becomes the next print starting position.
[See Also] ESC 2, ESC 3
[Sample Program] [Print Results]
LPRINT "AAA" ; CHR$ (&HA) ;
LPRINT "BBB" ; CHR$ (&HA) ;
LPRINT CHR$ (&HA) ;
LPRINT "CCC" ; CHR$ (&HA) ;
END
CR
[Function] Printing
[Code] <0D>H
[Outline] 1) When DSW1-3 is OFF:
This command is ignored.
2) When DSW1-3 is ON:
With data held inside the internal print buffer, printing and line feed are performed.
Without data inside the internal print buffer, however, no printing is performed.
[See Also] LF
[Sample Program] [Print Results]
LPRINT "AAA" ; CHR$ (&HD) ; When DSW1-3 is OFF
LPRINT "BBB" ; CHR$ (&HD) ;
LPRINT CHR$ (&HD) ;
LPRINT "CCC" ; CHR$ (&HD) ; When DSW1-3 is ON
END
AAABBBCCC