This function converts a text fragment to lower-case.
lowercase2 ( complete_text; starting_position; end_position )
The result of this function is of type TEXT. This is the text passed to the function with the characters between the start position and the end positions, the start position and end position characters included. This text is lower-case.
This function has three parameters:
Example
@( lowercase2( "THIS IS AN"; 6; 7 ) )
Result: THIS is AN
Note that the construction @ ( ) around the function means that the result of the function is displayed in the text. This construction must be used in a text part of a model document. The switch from ITP mode to text mode in a model document is made with the # characters. An ITP model document starts in text model, the #BEGIN makes the switch to ITP mode.
Note
The setting EnhancedUnicodeSupport in the ITP/Server Administrator can be used to map the function lowercase2 automatically to the function lowercase_of_characters. Refer to topic Enhanced Unicode support for more information.