Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

laravel excel set cell height

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

// Set height for multiple rows
$sheet->setHeight(array(
    1     =>  50,
    2     =>  25
));
Source by docs.laravel-excel.com #
 
PREVIOUS NEXT
Tagged: #laravel #excel #set #cell #height
ADD COMMENT
Topic
Name
1+8 =