How to set auto height in phpexcel?

前端 未结 4 1405
旧巷少年郎
旧巷少年郎 2021-02-01 01:42

I am using phpexcel to generate excel document with PHP.

the question is, how to make auto height row using phpexcel? many thanks :)

4条回答
  •  梦毁少年i
    2021-02-01 02:12

    You can set it by using following code,

    $objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
    $objPHPExcel->getActiveSheet()->getStyle('E')->getAlignment()->setWrapText(true);
    

提交回复
热议问题