You are here

public function PHPExcel_Writer_PDF::save in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php \PHPExcel_Writer_PDF::save()

Save PHPExcel to file

Parameters

string $pFilename Name of the file to save: @throws PHPExcel_Writer_Exception

Overrides PHPExcel_Writer_IWriter::save

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/PDF.php, line 93

Class

PHPExcel_Writer_PDF
PHPExcel_Writer_PDF

Code

public function save($pFilename = null) {
  $this->_renderer
    ->save($pFilename);
}