LibreOffice 7.5 Help
κ°μ λ³μμ ν λΉν©λλ€.
[Let] variable = expression
variable: Variable that you want to assign a value to. Value and variable type must be compatible.
λλΆλΆμ BASIC μΈμ΄μμμ λ§μ°¬κ°μ§λ‘ ν€μλ Letμ μ ν μ¬νμ λλ€.
Sub ExampleLet
Dim sText As String
Let sText = "Las Vegas"
MsgBox Len(sText) REM Returns 9
End Sub