📜  laravel excel 设置单元格高度 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:32.550000             🧑  作者: Mango

代码示例1
// Set height for a single row
$sheet->setHeight(1, 50);

// Set height for multiple rows
$sheet->setHeight(array(
    1     =>  50,
    2     =>  25
));