Sub writing out text paragraphs-sub, macro, libreoffice basic

Hello!
This here is ment to be a sub that differs paragraphs in text and writes each paragraph out.

Sub write_paragraph
oParEnum = ThisComponent.getText.createEnumeration…

Please, can somonme help me with links about next specific words:
ThisComponent
getText
createEnzmeration

Are all three of them specific words?

p.s. We have a text in writer.
This sub (macro) is “reading” the text, and writes out each paragraph by paragraph,

using msgbox (obviously).

Many thansk in advance!!!

LibreOffice BASIC is the same as OpenOffice.org BASIC was and coming from the StarBASIC.

You will find information in:

https://wiki.openoffice.org/wiki/Documentation/BASIC_Guide

See also: http://en.libreofficeforum.org/forum/extensions-customization/macro-uno (sticky topic)

And there is, of course, http://www.pitonyak.org/AndrewMacro.odt . (You may also find a pdf version.)

The main peculiarity seems to be: (From the API “Intro”)

OpenOffice.org objects and methods, such as paragraphs, spreadsheets, and fonts, are accessible to OpenOffice.org Basic through the OpenOffice.org application programming interface, or API. Through the API, for example, documents can be created, opened, modified and printed. The API can be used not only by OpenOffice.org Basic, but also by other programming languages, such as Java and C++. The interface between the API and various programming languages is provided by something called Universal Network Objects (UNO).

I myself just write a function for use in Cal here and there. I don’t need the API much.