You are here

private function PHPExcel_Writer_Excel5_Worksheet::_writeString in Loft Data Grids 6.2

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

* Write a LABELSST record or a LABEL record. Which one depends on BIFF version * *

Parameters

int $row Row index (0-based): * @param int $col Column index (0-based) * @param string $str The string * @param int $xfIndex Index to XF record

2 calls to PHPExcel_Writer_Excel5_Worksheet::_writeString()
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 *
PHPExcel_Writer_Excel5_Worksheet::_writeFormula in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Worksheet.php
* Write a formula to the specified row and column (zero indexed). * The textual representation of the formula is passed to the parser in * Parser.php which returns a packed binary string. * * Returns 0 : normal termination * -1 : formula…

File

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

Class

PHPExcel_Writer_Excel5_Worksheet
PHPExcel_Writer_Excel5_Worksheet

Code

private function _writeString($row, $col, $str, $xfIndex) {
  $this
    ->_writeLabelSst($row, $col, $str, $xfIndex);
}