You are here

private function PHPExcel_Writer_Excel5_Worksheet::_writeDimensions in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php \PHPExcel_Writer_Excel5_Worksheet::_writeDimensions()

* Writes Excel DIMENSIONS to define the area in which there is data.

1 call to PHPExcel_Writer_Excel5_Worksheet::_writeDimensions()
PHPExcel_Writer_Excel5_Worksheet::close in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php
* Add data to the beginning of the workbook (note the reverse order) * and to the end of the workbook. * * @access public *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php, line 1269

Class

PHPExcel_Writer_Excel5_Worksheet
PHPExcel_Writer_Excel5_Worksheet

Code

private function _writeDimensions() {
  $record = 0x200;

  // Record identifier
  $length = 0xe;
  $data = pack('VVvvv', $this->_firstRowIndex, $this->_lastRowIndex + 1, $this->_firstColumnIndex, $this->_lastColumnIndex + 1, 0x0);
  $header = pack("vv", $record, $length);
  $this
    ->_append($header . $data);
}