Check documentation for the latest version of dhtmlxSuite setItalic DHTMLX Docs

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