Option VBASupport Statement

Καθορίζει ότι η LibreOfficeDev Basic θα υποστηρίζει κάποιες προτάσεις VBA, συναρτήσεις και αντικείμενα.

Εικονίδιο σημείωσης

Η υποστήριξη για VBA δεν είναι πλήρης, αλλά καλύπτει μεγάλο ποσοστό των μοτίβων κοινής χρήσης.


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.


Σύνταξη:

Option VBASupport {1|0}

Παράμετροι:

1: Ενεργοποίηση υποστήριξης VBA στο LibreOfficeDev

0: Απενεργοποίηση υποστήριξης VBA

Παράδειγμα:


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

Ιδιότητες VBA

Υποστήριξη VBA στο LibreOfficeDev

CompatibilityMode() Function

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