LibreOffice 7.3 帮助
Option Compatible extends LibreOffice Basic compiler and runtime, allowing supplemental language constructs to Basic.
The function CompatibilityMode() controls runtime mode and affects all code executed after setting or resetting the mode.
在下列情况下, 此选项可能会产生影响或有所帮助:
Allow special characters as identifiers. all characters that are defined as letter in the Latin-1 (ISO 8859-1) character set, are accepted as part of identifiers.
过程支持 Private/Public 关键字。
对对象强制 Set 语句。
过程中可选参数的默认值。
存在多个可选参数时的命名参数。
LibreOffice Basic 库的预加载
编码类模块时必须使用 Option Compatible。
Option Compatible
Option Compatible
' With this option the code works, otherwise it causes a compiling error
Sub Main
ä = 10
print ä
End Sub
Statement Option VBAsupport 1 sets Option Compatible statement automatically.