7.6

Table Of Contents
Arguments
Same as BeginParagraph EndParagraph (procedure).
Code Sample Example
This example displays a justified paragraph with the UTF8 text running from right to left.
Example
setlinewidth(0.007)moveto(0,0)
rlineto(&width,0)
rlineto(0,&height)
rlineto(neg(&width),0)
rlineto(0,neg(&height))
closepath()
stroke()
moveto(&width/2,&height/18)
BeginUTF8Paragraph(0.0000,&width,0.0000,'leftright',0.1667,'rtl')
SetStyleExt(&Style1,12.0000,0,[100],100)
ShowUTF8('\u0623\u0633\u0627\u0633\u064B\u0627\u060C')
EndUTF8Paragraph()
CRLF (procedure)
Moves the current point by simulating a carriage return/line feed combination. The horizontal position is reset to the value of
the current left margin, while the vertical position is offset by the leading value specified.
Syntax
crlf( [leading] )
Argument
leading
Measure value setting the vertical distance, in inches, between two lines. If you do not provide this argument, the value by
default is 0.167 inches, which is roughly equivalent to a 6 LPI (lines per inch) setting.
Code Sample Example
This example demonstrates how to change the vertical spacing of lines within an object.
Example
margin(1,1)
show('These lines are displayed')
crlf(0.125)
show('at 8 LPI.')
crlf(0.5)
show('While these lines are displayed')
crlf(0.5)
show('at 2 LPI')
©2010 Objectif Lune Inc - 583 -