Setting width of spreadsheet cell using PHPExcel

后端 未结 7 962
萌比男神i
萌比男神i 2021-01-31 13:20

I\'m trying to set the width of a cell in an Excel document generated with PHPExcel with:

$objPHPExcel->getActiveSheet()->getColumnDimensionByColumn(\'C\')         


        
7条回答
  •  再見小時候
    2021-01-31 13:47

    It's a subtle difference, but this works fine for me:

    $objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(10);
    

    Notice, the difference between getColumnDimensionByColumn and getColumnDimension

    Also, I'm not even setting AutoSize and it works fine.

提交回复
热议问题