Active JavaScript en el navegador para mostrar las páginas de ayuda de LibreOfficeDev.

How to Read Syntax Diagrams and Statements

LibreOfficeDev Basic statements use syntax diagrams and textual conventions that follow these notations:

The syntax of a LibreOfficeDev Basic one line statement is illustrated herewith:

Diagram example

syntax of a statement

A set of LibreOfficeDev Basic statements - with optional labels - is using a colon : sign to separate them, it can be terminated with an optional comment. REM or an apostrophe sign introduce a comment.

diagram fragment

Textual example

[ [label:] statement [: …] ] [{REM|'} text]

A set of LibreOfficeDev Basic statements - with optional labels - is using a colon : sign to separate them, it can be terminated with an optional comment. REM or an apostrophe sign introduce a comment.

Ejemplo:


       Sub Main
           GoTo there ' skip first statement and display '2'
           here: Print 1, : there: Print 2 REM multi-statement line
       End Sub