You are here

public function PHPExcel_Worksheet_RowDimension::setRowHeight in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php \PHPExcel_Worksheet_RowDimension::setRowHeight()

Set Row Height

Parameters

double $pValue:

Return value

PHPExcel_Worksheet_RowDimension

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/RowDimension.php, line 138

Class

PHPExcel_Worksheet_RowDimension
PHPExcel_Worksheet_RowDimension

Code

public function setRowHeight($pValue = -1) {
  $this->_rowHeight = $pValue;
  return $this;
}