SimpleExcel\Parser\BaseParser::isCellExists PHP Method

isCellExists() public method

Check whether cell with specified row & column exists
public isCellExists ( integer $row_num, integer $col_num ) : boolean
$row_num integer Row number
$col_num integer Column number
return boolean
    public function isCellExists($row_num, $col_num)
    {
        return $this->isRowExists($row_num) && $this->isColumnExists($col_num);
    }