You are here

public function PHPExcel_Writer_PDF_Core::setFont in Loft Data Grids 7.2

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

Set font. Examples: 'arialunicid0-chinese-simplified' 'arialunicid0-chinese-traditional' 'arialunicid0-korean' 'arialunicid0-japanese'

Parameters

string $fontName:

File

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

Class

PHPExcel_Writer_PDF_Core
PHPExcel_Writer_PDF_Core

Code

public function setFont($fontName) {
  $this->_font = $fontName;
  return $this;
}