Check documentation for the latest version of dhtmlxSuite getCell DHTMLX Docs

getCell

Gets the cell object.

Parameters

  • $cell - (string) the cell coordinate (e.g. 'B1')

Return value

  • (object) SpreadSheetCell object

Example

$sh = new SpreadSheet($res, "1", $db_prefix);
 
$cell = $sh->getCell("B2");

See also: getCells

Back to top