Option VBASupport Statement

Especifica que el LibreOfficeDev Basic admetrà algunes instruccions, funcions i objectes VBA.

Icona de nota

La compatibilitat amb VBA no és total, però admet una gran part dels patrons d'ús comú.


warning

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


warning

When VBA support is enabled, LibreOfficeDev Basic function arguments and return values are the same as their VBA functions counterparts. When the support is disabled, LibreOfficeDev Basic functions may accept arguments and return values different of their VBA counterparts.


Sintaxi:

Option VBASupport {1|0}

Paràmetres :

1: Activa la compatibilitat VBA al LibreOfficeDev

0: Desactiva la compatibilitat VBA

Exemple :


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

Propietats de VBA

compatibilitat VBA al LibreOfficeDev

CompatibilityMode() Function

CompatibilityMode() function is controlling runtime mode and affects all code executed after setting or resetting the mode.