Locks/unlocks the cell.
$cell = new SpreadSheetCell($res, "1","B1", $db_prefix);
$cell->setLocked(true);
See also: lock, unlock, isLocked
Note,
$cell->setLocked(true);
//is egual to
$cell->lock();
$cell->setLocked(false);
//is equal to
$cell->unlock();
Back to top