Check documentation for the latest version of dhtmlxSuite getColName DHTMLX Docs

getColName

Gets the name of the column for the specified index.

Parameters

  • $col - (number) the column index

Return value

  • (string) the column's name

Example

$cell = new SpreadSheetCell($res, "1","B1", $db_prefix);
$name = $cell->getColName(2);

See also: getColIndex

Back to top