Option VBASupport Statement
Especifica que o LibreOffice Basic terá suporte a algumas instruções, funções e objetos VBA.
O suporte a VBA ainda não está completo mas já abrange uma grande parte dos padrões normais de utilização.
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: ativa o suporte ao VBA
0: desativa o suporte ao VBA
Option VBASupport 1
Sub ExampleVBA
Dim sVar As Single
sVar = Worksheets("Sheet1").Range("A1")
Print sVar
End Sub