Basic IDE

Defines the settings for the Basic IDE (Integrated Development Environment) to help edit macros in Basic.

warning

This feature is experimental and may produce errors or behave unexpectedly. To enable it anyway, choose - LibreOffice - Advanced and select Enable experimental features checkbox.


Щоб скористатися цією командою…

Виберіть - LibreOffice - ІСР Basic.


Code Completion

This feature helps the Basic programmer to complete the code, saves extensive typing and helps to reduce coding errors.

Enable code completion

Display methods of a Basic object. Code completion will display the methods of a Basic object, provided the object is a UNO extended type, and the option "Use extended types" is also on. It does not work on a generic Object or Variant Basic types.

When a variable is a UNO interface or structure, a list box appears when pressing the dot after a variable's name (like aVar. [list box appears] ). Its methods and variables are listed in the list box, displayed just below. You can navigate between the suggested methods and variables with the arrow keys. To insert the selected entry, press the Enter key or double click on it with the mouse. To cancel the list box, press the Esc key.

When typing the method's name, and pressing the Tab key once, it will complete the selected entry, pressing the Tab key again will cycle through the matches with the longest prefix. For example, when aVar.aMeth is typed, it will cycle through aMeth1, aMethod2, aMethod3 entries, and other entries are not hidden.

Приклад:


    Dim aPicker As com.sun.star.ui.dialogs.XFilePicker
  

is a valid variable definition, its methods can be accessed via the dot (".") operator:


    aPicker.getDisplayDirectory()
  

Code Suggestion

These are coding helpers for the Basic programmer.

Autocorrection

Виправити регістри змінних BASIC і ключових слів під час введення. LibreOffice Basic IDE змінить написання операторів BASIC і змінних BASIC Вашого коду, щоб покращити стиль кодування та читабельність. Зміни коду ґрунтуються на оголошеннях змінних програми та на розібраних командах LibreOffice BASIC.

Приклад:


    Dim intVar as Integer
  

and when writing Intvar, will be corrected to intVar to match the case existing in the declaration of intVar .

Basic keywords are also automatically corrected (the list of the keywords is grabbed out from the parser).

Приклади:

Integer, String, ReDim, ElseIf, etc...

Autoclose quotes

Automatically close open quotes. LibreOffice Basic IDE will add a closing quote each time you type an opening quote. Handy for inserting strings in the Basic code.

Autoclose parenthesis

Automatically close open parenthesis. LibreOffice Basic IDE will add a closing parenthesis “)” each time you type an opening parenthesis “(“.

Autoclose procedures

Automatically insert closing statements for procedures. LibreOffice Basic IDE will add a statement End Sub or End Function after you type a Sub or Function statement and press Enter.

Language Features

Use extended types

Allow UNO object types as valid Basic types. This feature extends the Basic programming language standard types with the LibreOffice UNO types. This allows the programmer to define variables with the right UNO type and is necessary for the code completion feature.

Приклад:


    Sub Some_Calc_UNO_Types
    REM A spreadsheet object
        Dim oSheet As com.sun.star.sheet.XSpreadsheet
        oSheet = ThisComponent.getSheets().getByIndex(0)
    REM A cell object
        Dim oCell As com.sun.star.table.XCell
        oCell = oSheet.getCellByPosition(0,0)
    End Sub
  
Піктограма Попередження

The use of UNO Extended Types in Basic programs can restrain interoperability of the program when executed in other office suites.


Будь ласка, підтримайте нас!