Option VBASupport Statement

LibreOfficeDev Basic'in bazı VBA deyimlerini, fonksiyonlarını ve nesnelerini destekleyeceği anlamına gelir.

Not Simgesi

VBA desteği tam olmamasına rağmen yaygın kullanılan desenlerin büyük bölümünü kapsar.


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.


Sözdizimi:

Option VBASupport {1|0}

Parametreler:

1: LibreOfficeDev VBA desteğini etkinleştir

0: VBA desteğini kapat

Örnek:


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

VBA Özellikleri

LibreOfficeDev VBA desteği

CompatibilityMode() Function

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