עזרה עבור LibreOfficeDev 7.4
Converts all uppercase letters in a string to lowercase.
See also: UCase Function
LCase (Text As String)
String
\
Sub ExampleLUCase
Dim sVar As String
sVar = "Las Vegas"
Print LCase(sVar) ' "las vegas"
Print UCase(sVar) ' "LAS VEGAS"
End Sub