Check documentation for the latest version of dhtmlxSuite getCells DHTMLX Docs

getCells

Gets an array of cells stored in the database (cells of the specified spreadsheet instance, not all cells in the db).

Return value

  • (array) an array of SpreadSheetCell objects

Example

$sh = new SpreadSheet($res, "1", $db_prefix);
 
$cells = $sh->getCells();

See also: getCell

Back to top