Option VBASupport Statement

መወሰኛ የ LibreOffice Basic ይደግፍ አንደሆን አንዳንድ የ VBA አረፍተ ነገር: ተግባሮች: እና እቃዎች

warning

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


note

የ VBA ድጋፍ የ ተሟላ አይደለም: ነገር ግን ከፍተኛ አካሉን ይሸፍናል: ለ መደበኛ መጠቀሚያ ድግግሞሽ


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.


አገባብ:

Option VBASupport {1|0}

ደንቦች:

1: ማስቻያ የ VBA ድጋፍ በ LibreOffice

0: ማሰናከያ የ VBA ድጋፍ

ለምሳሌ:


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

Please support us!