You are here

public function PHPExcel_RichText_Run::setFont in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php \PHPExcel_RichText_Run::setFont()

* Set font * *

Parameters

PHPExcel_Style_Font $pFont Font: * @throws PHPExcel_Exception * @return PHPExcel_RichText_ITextElement

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/RichText/Run.php, line 71

Class

PHPExcel_RichText_Run
PHPExcel_RichText_Run

Code

public function setFont(PHPExcel_Style_Font $pFont = null) {
  $this->_font = $pFont;
  return $this;
}