Option VBASupport Statement

Specifies that LibreOffice Basic will support some VBA statements, functions and objects.

warning

āļ¸āˇ™āļ¸ āļ´āˇŠâ€āļģāļšāˇāˇāļąāļē āļ’āļšāļšāļēāļš āļšāˇŠâ€āļģ⎒āļēāˇāļ­āˇŠāļ¸āļš āļšāļŊ ⎄⎐āļšāˇ’ ⎀⎐āļŠāˇƒāļ§āˇ„āļąāˇŠ āļšāˇšāļ­āļēāļ§ āļ´āˇ™āļģ āļ‘āļšāˇŠ āļšāļŊ āļē⎔āļ­āˇ”āļē⎒.


note

The support for VBA is not complete, but covers a large portion of the common usage patterns.


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}

Parameters:

1: Enable VBA support in LibreOffice

0: Disable VBA support

Example:


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

Please support us!