CZxmD‖

dLDx6‖Option VBASupport Statement

Cp5GM‖Specifies that LibreOfficeDev Basic will support some VBA statements, functions and objects.

warning

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


note

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


warning

x5mKt‖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.


FVEx2‖Syntax:

Option VBASupport {1|0}

WADQ4‖Parameters:

UE4bQ‖1: Enable VBA support in LibreOfficeDev

y4CjE‖0: Disable VBA support

EFSA4‖Example:


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