ExcelAnt\Adapter\PhpExcel\Sheet\Sheet::setDefaultRowHeight PHP Метод

setDefaultRowHeight() публичный Метод

public setDefaultRowHeight ( $height )
    public function setDefaultRowHeight($height)
    {
        if (false === filter_var($height, FILTER_VALIDATE_INT)) {
            throw new \InvalidArgumentException("Index must be numeric");
        }
        $this->phpExcelWorksheet->getDefaultRowDimension()->setRowHeight($height);
        return $this;
    }