23 lines
868 B
Plaintext
23 lines
868 B
Plaintext
Font "Arial"
|
|
Mode 32
|
|
' M2000 internal editor can display left to rigtht languages if text is in same line, and same color.
|
|
a$="لم أجد هذا الكتاب القديم"
|
|
' We can use console to display text, using proportional spacing
|
|
Print Part $(4), a$
|
|
Print
|
|
' We can display right to left using
|
|
' the legend statement which render text at a given
|
|
' graphic point, specify the font type and font size
|
|
' and optional:
|
|
' rotation angle, justification (1 for right,2 for center, 3 for left)
|
|
'quality (0 or non 0, which 0 no antialliasing)
|
|
' letter spacing in twips (not good for arabic language)
|
|
move 6000,6000
|
|
legend a$, "Arial", 32, pi/4, 2, 0
|
|
' Variables can use any unicode letter.
|
|
' Here we can't display it as in M2000 editor.
|
|
' in the editor we see at the left the variable name
|
|
' and at the right the value
|
|
القديم=10
|
|
Print القديم+1=11 ' true
|