User Tools

Site Tools

한국어

cubloc:print:index

Print

Print text

textString, 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 Strings and variables, you can use a comma as shown below: (See the 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.

Go CUBLOC home

cubloc/print/index.txt · Last modified: 2016/06/02 18:08 by COMFILE Technology