Ask Your Question
0

Using PHPSpreadsheet, how can I establish a consistent row height for all rows?

asked 2023-06-25 18:17:40 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-25 18:24:02 +0000

lalupa gravatar image

To establish a consistent row height for all rows in PHP Spreadsheet, you can use the following code:

// Set a default row height
$sheet->getDefaultRowDimension()->setRowHeight(20);

// Loop through all rows and set the row height
foreach ($sheet->getRowIterator() as $row) {
  $row->getWorksheet()->getRowDimension($row->getRowIndex())->setRowHeight(20);
}

This code sets a default row height of 20 and then loops through all the rows in the worksheet, setting the row height to the default value. This ensures that all rows have the same height.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-25 18:17:40 +0000

Seen: 10 times

Last updated: Jun 25 '23