Option VBASupport-uttrykket
Gjer at LibreOffice Basic vil støtte nokre VBA-uttrykk, funksjonar og objekt.
Støtta for VBA er ikkje fullstendig, men dekker ein stor del av det vanlege bruksmønsteret.
When VBA support is enabled, LibreOffice Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, LibreOffice Basic functions may accept arguments and return values different of their VBA counterparts.
Option VBASupport {1|0}
1: Slå på VBA-støtte i LibreOffice
0: Slå av VBA-støtte
Option VBASupport 1
Sub ExampleVBA
Dim sVar As Single
sVar = Worksheets("Sheet1").Range("A1")
Print sVar
End Sub