ToLower

The ToLower built-in variable method converts the value of the string variable to lowercase. The characters 'A' through 'Z' are converted to 'a' through 'z' respectively. Embedded digits or non-alphabetical characters are unchanged.

This method uses the appropriate CCsversion routines if they are available.

Note: Applications deployed to MCP or Windows use standard system utilities for character conversions.

To convert the value of a string variable to uppercase, use the ToUpper method.

Syntax

<<string variable>>::ToLower(void) : void

Owner

Any string variable.