swathibandaru has asked for the wisdom of the Perl Monks concerning the following question:
I have created a table using
$doc = odfDocument(file => 'test.odt', create => 'text'); doc->appendTable(tab1,5,3); doc->cellValue(tab1,0,0,"S No"); doc->cellValue(tab1,0,1,"Name"); doc->cellValue(tab1,0,2,"Value");
In other rows & columns values are added using cellValue.
Requirements: 1. When appendTable is used, table with default settings is created. How to change table Border to dark black with increased thickness 2. Table with all columns of same size is created. I want column 0,2 with less width, column 1 with large width. 3. I want to change Row 0 contents to Bold, as this indicates Heading to table contents.
Unable to find any examples to do above. How to get above requirements. I am trying to create a table in openOffice word document using perl.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: working with tables in OpenOffice::OODoc
by GotToBTru (Prior) on Jun 24, 2016 at 14:33 UTC | |
|
Re: working with tables in OpenOffice::OODoc
by poj (Abbot) on Jun 26, 2016 at 06:23 UTC | |
by swathibandaru (Initiate) on Jun 28, 2016 at 06:06 UTC |