StrToLower
InstallShield 2024 » InstallScript Language Reference
The StrToLower function converts all the letters in a string to lowercase. This function does not affect non-alphabetic characters.
Syntax
StrToLower ( svTarget, szSource );
Parameters
Parameter |
Description |
svTarget |
Returns the string in szSource with all characters converted to lowercase. |
szSource |
Specifies the string to convert to all lowercase characters. |
Return Values
Return Value |
Description |
0 |
Indicates that the function successfully changed the case of the string. |
< 0 |
Indicates that the function was unable to change the case of the string. |
See Also