You are here

public function PHPExcel_Worksheet_RowDimension::__construct 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::__construct()

Create a new PHPExcel_Worksheet_RowDimension

Parameters

int $pIndex Numeric row index:

File

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

Class

PHPExcel_Worksheet_RowDimension
PHPExcel_Worksheet_RowDimension

Code

public function __construct($pIndex = 0) {

  // Initialise values
  $this->_rowIndex = $pIndex;

  // set row dimension as unformatted by default
  $this->_xfIndex = null;
}