LibreOffice 7.1 Help
Geeft aan dat LibreOffice-Basic sommige VBA statements, functies en objecten ondersteunt.
De ondersteuning voor VBA is niet volledig, maar beslaat een groot deel van de veelgebruikte patronen.
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}
VBA support in LibreOffice inschakelen
0: VBA support uitschakelen
Option VBASupport 1
Sub ExampleVBA
Dim sVar As Single
sVar = Worksheets("Sheet1").Range("A1")
Print sVar
End Sub