I am working on some LibreOffice macros that work on tables, in particular to set the width and height of each column and row to 0.85 cm (0.335 in).
In MS Office, this is easy, just select the table and in the macro have:
Selection.Rows.Height = CentimetersToPoints(0.85)
Selection.Columns.PreferredWidth = CentimetersToPoints(0.85)
There isn't anything like this in LibreOffice 4.1. It appears each column/row must be adjusted individually. Two ways to do this:
Iterate through all the columns/rows and adjust each column/row
Adjust the first column/row to some carefully calculated wide width/height, then call Distribute Columns/Rows Evenly
Just to get an idea of the code, I tried using the macro recorder and went through Table | Table Properties and played around until the table looked okay, but most of what I did was not recorded in the macro.
Has anyone done something like this?
Here is as far as I could get:
Major problems noted:
No way to retrieve the actual table you want to modify via
ThisComponent.CurrentSelection
, so instead hardcoded to the table at index 0Any changes to the table don't seem to be reflected in the document, and no obvious way to re-render or refreshSeems to be working now! But still looking for a way to call the function to distribute columns evenlycolumns.getByIndex
always returnsNULL
!, and there's no documentation on how to use the column enumeration class within BasicBased on this investigation, would advise against trying to do anything productive with LibreOffice 4.1 Writer Basic macros.