Syntax
Public Function StringToLower(ByRef stringVar As String) As Boolean
Description
This function is used to transform a string into lower case.
Parameters
Key | Description |
stringVar | String to transform to lower case. |
Return value
Returns true if successful result, otherwise returns false. In order to get an error, call GetLastError()function.
Sample
Public Sub main () Dim STR STR =HELLO AT VTL AlertMessage StringToLower (STR) End sub
See Also