6.0

Table Of Contents
74
Language Reference
4
Breakpoint (procedure)
Stops the execution of a PlanetPress Talk object when the specified expression is True. This breakpoint only
happens when running the document on your computer; it has no effect on the printed document. It is
used for debugging purposes.
Syntax
breakpoint( expression1 )
Argument
expression1 — Boolean value.
Code Sample Example
This example sets up a loop, stops the loop on its 5th iteration, and then displays the value.
Example
define(&x,integer,1)
for(&x,1,1,10)
breakpoint(&x = 5)
show(inttostr(&x))
endfor()
C128 (function)
Converts a two-character string to Code 128 bar code, character set C data.
Syntax
c128( string ) string value
Argument
string — String value composed of two characters.
Code Sample Example
This example converts the data on line 5, columns 12 to 13, to Code 128 bar code C character set data.
Example
c128(@(5,12,13))