You are here

private function PHPExcel_Reader_Excel5::_readMulBlank in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php \PHPExcel_Reader_Excel5::_readMulBlank()

* Read MULBLANK record * This record represents a cell range of empty cells. All * cells are located in the same row * * -- "OpenOffice.org's Documentation of the Microsoft * Excel File Format"

1 call to PHPExcel_Reader_Excel5::_readMulBlank()
PHPExcel_Reader_Excel5::load in vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php
* Loads PHPExcel from file * *

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Reader/Excel5.php, line 4052

Class

PHPExcel_Reader_Excel5
PHPExcel_Reader_Excel5

Code

private function _readMulBlank() {
  $length = self::_GetInt2d($this->_data, $this->_pos + 2);
  $recordData = $this
    ->_readRecordData($this->_data, $this->_pos + 4, $length);

  // move stream pointer to next record
  $this->_pos += 4 + $length;

  // offset: 0; size: 2; index to row
  $row = self::_GetInt2d($recordData, 0);

  // offset: 2; size: 2; index to first column
  $fc = self::_GetInt2d($recordData, 2);

  // offset: 4; size: 2 x nc; list of indexes to XF records
  // add style information
  if (!$this->_readDataOnly) {
    for ($i = 0; $i < $length / 2 - 3; ++$i) {
      $columnString = PHPExcel_Cell::stringFromColumnIndex($fc + $i);

      // Read cell?
      if ($this
        ->getReadFilter() !== NULL && $this
        ->getReadFilter()
        ->readCell($columnString, $row + 1, $this->_phpSheet
        ->getTitle())) {
        $xfIndex = self::_GetInt2d($recordData, 4 + 2 * $i);
        $this->_phpSheet
          ->getCell($columnString . ($row + 1))
          ->setXfIndex($this->_mapCellXfIndex[$xfIndex]);
      }
    }
  }

  // offset: 6; size 2; index to last column (not needed)
}