Option VBASupport Statement
Specifica che LibreOffice Basic supporterà alcune istruzioni, funzioni e oggetti VBA.
Il supporto per VBA non è completo ma abbraccia, però, una buona parte dei modelli d'uso comune.
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: Abilita il supporto VBA in LibreOffice
0: Disabilita il supporto VBA
Option VBASupport 1
Sub ExampleVBA
Dim sVar As Single
sVar = Worksheets("Sheet1").Range("A1")
Print sVar
End Sub