Option VBASupport Statement

Specifica che LibreOffice Basic supporterà alcune istruzioni, funzioni e oggetti VBA.

Icona di nota

Il supporto per VBA non è completo ma abbraccia, però, una buona parte dei modelli d'uso comune.


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.


Sintassi:

Option VBASupport {1|0}

Parametri:

1: Abilita il supporto VBA in LibreOffice

0: Disabilita il supporto VBA

Esempio:


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