Option VBASupport Statement

Especifica que o LibreOffice Basic terá suporte a algumas instruções, funções e objetos VBA.

Ícone de nota

O suporte a VBA ainda não está completo mas já abrange uma grande parte dos padrões normais de utilização.


warning

This statement must be added before the executable program code in a module.


warning

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.


Sintaxe:

Option VBASupport {1|0}

Parâmetros:

1: ativa o suporte ao VBA

0: desativa o suporte ao VBA

Exemplo:


Option VBASupport 1
Sub ExampleVBA
    Dim sVar As Single
    sVar = Worksheets("Sheet1").Range("A1")
    Print sVar
End Sub