setItalic
Sets the italic font for the cell.
Parameters
- $value - (boolean) the true value sets the italic font, false - leaves the normal font
Example
$cell = new SpreadSheetCell($res, "1","B1", $db_prefix);
$cell->setItalic(true);
See also: isItalic, setBold
Back to top