You are here

public function PHPExcel_Style_Font::setSize in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php \PHPExcel_Style_Font::setSize()

* Set Size * *

Parameters

double $pValue: * @return PHPExcel_Style_Font

1 call to PHPExcel_Style_Font::setSize()
PHPExcel_Style_Font::applyFromArray in vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php
* Apply styles from array * * <code> * $objPHPExcel->getActiveSheet()->getStyle('B2')->getFont()->applyFromArray( * array( * 'name' => 'Arial', * 'bold' => TRUE, …

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Style/Font.php, line 275

Class

PHPExcel_Style_Font
PHPExcel_Style_Font

Code

public function setSize($pValue = 10) {
  if ($pValue == '') {
    $pValue = 10;
  }
  if ($this->_isSupervisor) {
    $styleArray = $this
      ->getStyleArray(array(
      'size' => $pValue,
    ));
    $this
      ->getActiveSheet()
      ->getStyle($this
      ->getSelectedCells())
      ->applyFromArray($styleArray);
  }
  else {
    $this->_size = $pValue;
  }
  return $this;
}