Ajuda del LibreOffice 24.8
LibreOffice macros are grouped in module files, modules are usually grouped in library folders, and libraries are grouped in library containers although containers can contain modules too.
A library is used as a major grouping for either an entire category of macros, or for an entire application. Modules usually split functionality, such as user interaction and calculations. Individual macros are subroutines and functions. The Figure below shows an example of the hierarchical structure of macro libraries in LibreOffice.
Figure: Macro Library hierarchy
The containers are accessible in all LibreOffice programs through the user interface. Go to
, to open the Python Macros dialog.Hi ha tres contenidors de biblioteques dins la llista Macro des de:
Les meues macros: les macros personals a disposició de l'usuari del LibreOffice
Macros de l'aplicació: macros del sistema distribuïdes amb el LibreOffice per a tots els usuaris de l'ordinador
Document macros: every document can contain macro libraries available in that document for all users
Refer to Getting Session Information in order to get programmatic access to Python script locations.
El programa d'instal·lació ha col·locat les macros existents a aquesta ubicació (contenidor). Estan disponibles per a tots els usuaris de l'ordinador, i qualsevol document obert pot accedir-hi. Vos calen privilegis administratius per a emmagatzemar o modificar macros a aquesta ubicació.
La ubicació del contenidor Macros del LibreOffice al sistema de fitxers depèn del sistema operatiu:
En el Windows: ${Instal·lació}\share\Scripts\python.
En el Linux i el macOS: ${Instal·lació}/share/Scripts/python.
This container is accessible only by the LibreOffice user. Any open document can access macros stored the container. Macros in this location are stored in the LibreOffice user profile.
La ubicació del contenidor Les meues macros és a l'espai d'usuari i depèn del sistema operatiu:
En el Windows,
%APPDATA%\LibreOffice\4\user\Scripts\python.
En el Linux i el macOS:
$HOME/.config/libreoffice/4/user/Scripts/python.
Document macros are embedded in the document and are accessible only when the document is open.
Python macros can be organized in libraries, modules and macros. Use the Macro Library hierarchy as a guide when creating or installing new macros in module files, new module files in library folders or new library folders in containers.