Setting the Page Direction in PHPExcel

Asked 2 years ago, Updated 2 years ago, 55 views

I am using PHPExcel, but I would like to set the page direction in Excel page title ->print title -> sheet, but is it possible to set it on the PHP side?
I am using Excel 2010.

php excel

2022-09-30 14:37

1 Answers

Regarding the US version of StackOverflow, I have an answer.
https://stackoverflow.com/questions/29026645/how-to-use-print-ready-functionality-in-phpexcel-library

See the Orientation and Paper Size: section.

$objPHPExcel->getActiveSheet()
    ->getPageSetup()
    ->setOrientation(PHPExcel_Worksheet_PageSetup::ORIENTATION_LANDSCAPE);


2022-09-30 14:37

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.