Collabora Office 21.06 Help
Geeft aan dat Collabora Office-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, Collabora Office Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, Collabora Office Basic functions may accept arguments and return values different of their VBA counterparts.
Option VBASupport {1|0}
VBA support in Collabora Office inschakelen
0: VBA support uitschakelen
Option VBASupport 1
Sub ExampleVBA
Dim sVar As Single
sVar = Worksheets("Sheet1").Range("A1")
Print sVar
End Sub