|
There is no direct method to add a column in a table with OpenOffice::OODoc.
In the OOo/ODF XML, a table is made of rows, and a row is made of cells. The role of the column XML elements in a table is to bear some common layout data.
The best practical way to append a column is an explicit loop which appends a cell to each row, and the replication of the last column element.
|