6.0

Table Of Contents
112
Language Reference
4
Syntax
lowercase( string ) string
Argument
string — String value you want to convert to lower case. The string may be a mix of upper and lower case
characters.
Code Sample Example
&partname := lowercase( @(30,16,39) )
LT (function)
Compares two expressions of any type and returns true if the first is less than the second, false otherwise.
This is the functional equivalent to the < operator.
Syntax
lt( expression1, expression2 ) Boolean value
Arguments
expression1, expression2 — Values of any type. Both expressions must be of the same type.
Code Sample Example
This example shows both ways of comparing two expressions.
Example
if(lt(&current.line, 15))
show('Top of page')
endif()
%Same statement, using the < operator
if(&current.line < 50)
show('Top of page')
endif()
MapUTF8 (function)
Converts a text string from its original encoding to UTF8. This function can be used within a ShowUTF8,
ShowUTF8Left, a ShowUTF8Right, and a ShowUTF8Center procedure.