Helpo de LibreOfficeDev 25.8
Konvertas ĉiujn majusklojn en ĉeno al minuskloj.
Vidu ankaŭ: UCase-Funkcion
LCase (Text As String)
String
Text: Ĉena esprimo konvertota.
Sub ExampleLUCase
Dim sVar As String
    sVar = "Las Vegas"
    Print LCase(sVar) ' "las vegas"
    Print UCase(sVar) ' "LAS VEGAS"
End Sub