Check documentation for the latest version of dhtmlxSuite getAlign DHTMLX Docs

getAlign

Gets the alignment set in the cell.

Return value

  • ('left', 'right', 'center', 'justify') the alignment set in the cell. The default value is 'left'.

Example

$cell = new SpreadSheetCell($res, "1","B1", $db_prefix);
$cellAlign = $cell->getAlign();

See also: setAlign

Back to top