====== Print ======
''Print text''
|text|String, String variable, or String constant containing text to be printed|
Model : CT1721C, CT1820, CUBLOC + GHB3224C
This command prints characters on the text layer. To print characters to the
graphic layer, the GPrint command can be used.
Locate 1,1 ' Move to position 1,1
Print "COMFILE"
To concatenate multiple ''String''s and variables, you can use a comma as shown below: (See the [[:Cubloc:Dec:|Dec]] command)
Dim A As Integer
Dim B As Integer
A = 123
A = 456
Print "ABC","DEF", Dec A, Dec B ' Displays "ABCDEF123456".
Use CR for carriage return (new line).
Print "COMFILE",CR ' Print COMFILE and go to the next line.
{{ :cubloc:print:printcmd.png?nolink |}}
[[cubloc:index#Graphic/Display_Library:|Go CUBLOC home]]