コード例 #1
0
ファイル: Writer.php プロジェクト: nimmneun/onesheet
 /**
  * Set fixed column widths per cell (no ranges) and array index
  * 0 being the first column.
  * If used alongside cell autosizing, these should be set
  * after the last row has been added.
  *
  * @param array $columnWidths
  * @throws \InvalidArgumentException
  */
 public function setFixedColumnWidths(array $columnWidths)
 {
     $this->sheet->setFixedColumnWidths($columnWidths);
 }