|
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?
|