Anweisung Option VBASupport

Gibt an, dass LibreOffice Basic einige VBA Anweisungen, Funktionen und Objekte unterstützt.

Notizsymbol

Die Unterstützung für VBA ist nicht komplett, aber umfasst einen großen Teil der allgemein gebräuchlichen Muster.


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.


Syntax:

Option VBASupport {1|0}

Parameter:

1: VBA-Unterstützung in LibreOffice aktivieren

0: VBA-Unterstützung deaktivieren

Beispiel:


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