OpenOffice-OODoc - How to change text style of cell

Posted on Wed Mar 21 17:44:32 2007 by cajun
How to change text style of cell
How do you change the text style of an individual cell in oowriter table?
$c->cellSpan("vuln$i",0,0,2); $c->cellStyle("vuln$i", 0, 0, "Table3.A1"); my $cell=$c->getCell("vuln$i",0,0); $c->updateCell($cell, $vuln);

cellSpan - spans across columns.
cellStyle - changes border, background etc.
getCell - returns the cell element
updateCell - changes text within the cell

Am I missing something?
Direct Responses: 4647 | Write a response