$_data
$_data : string
The string containing the data of the BIFF stream
PHPExcel_Writer_Excel5_Workbook
$_parser : \PHPExcel_Writer_Excel5_Parser
Formula parser
$_xfWriters : array<mixed,\PHPExcel_Writer_Excel5_Xf>
XF Writers
$_phpExcel : \PHPExcel
Workbook
$_fontWriters : array<mixed,\PHPExcel_Writer_Excel5_Font>
Fonts writers
$_escher : \PHPExcel_Shared_Escher
Escher object corresponding to MSODRAWINGGROUP
__construct(\PHPExcel $phpExcel = null, $str_total, $str_unique, $str_table, $colors, mixed $parser)
Class constructor
\PHPExcel | $phpExcel | The Workbook |
$str_total | ||
$str_unique | ||
$str_table | ||
$colors | ||
mixed | $parser | The formula parser created for the Workbook |
_addContinue(string $data) : string
Excel limits the size of BIFF records. In Excel 5 the limit is 2084 bytes. In Excel 97 the limit is 8228 bytes. Records that are longer than these limits must be split up into CONTINUE blocks.
This function takes a long BIFF record and inserts CONTINUE records as necessary.
string | $data | The original binary data to be written |
A very convenient string of continue blocks
_addFont(\PHPExcel_Style_Font $font) : integer
Add a font to added font
\PHPExcel_Style_Font | $font |
Index to FONT record
getEscher() : \PHPExcel_Shared_Escher
Get Escher object
setEscher(\PHPExcel_Shared_Escher $pValue = null)
Set Escher object
\PHPExcel_Shared_Escher | $pValue |
_writeDefinedNameBiff8(string $name, string $formulaData, string $sheetIndex, boolean $isBuiltIn = false) : string
Write a DEFINEDNAME record for BIFF8 using explicit binary formula data
string | $name | The name in UTF-8 |
string | $formulaData | The binary formula data |
string | $sheetIndex | 1-based sheet index the defined name applies to. 0 = global |
boolean | $isBuiltIn | Built-in name? |
Complete binary record data
_writeShortNameBiff8(string $name, string $sheetIndex, array<mixed,integer[]> $rangeBounds, boolean $isHidden = false) : string
Write a short NAME record
string | $name | |
string | $sheetIndex | 1-based sheet index the defined name applies to. 0 = global |
array<mixed,integer[]> | $rangeBounds | range boundaries |
boolean | $isHidden |
Complete binary record data
_writeBoundsheet(\PHPExcel_Worksheet $sheet, integer $offset)
Writes Excel BIFF BOUNDSHEET record.
\PHPExcel_Worksheet | $sheet | Worksheet name |
integer | $offset | Location of worksheet BOF |
_writeExterncount(integer $cxals)
Write BIFF record EXTERNCOUNT to indicate the number of external sheet references in the workbook.
Excel only stores references to external sheets that are used in NAME. The workbook NAME record is required to define the print area and the repeat rows and columns.
A similar method is used in Worksheet.php for a slightly different purpose.
integer | $cxals | Number of external references |
_writeExternsheet(string $sheetname)
Writes the Excel BIFF EXTERNSHEET record. These references are used by formulas. NAME record is required to define the print area and the repeat rows and columns.
A similar method is used in Worksheet.php for a slightly different purpose.
string | $sheetname | Worksheet name |
_writeNameShort(integer $index, integer $type, integer $rowmin, integer $rowmax, integer $colmin, integer $colmax)
Store the NAME record in the short format that is used for storing the print area, repeat rows only and repeat columns only.
integer | $index | Sheet index |
integer | $type | Built-in name type |
integer | $rowmin | Start row |
integer | $rowmax | End row |
integer | $colmin | Start colum |
integer | $colmax | End column |
_writeNameLong(integer $index, integer $type, integer $rowmin, integer $rowmax, integer $colmin, integer $colmax)
Store the NAME record in the long format that is used for storing the repeat rows and columns when both are specified. This shares a lot of code with _writeNameShort() but we use a separate method to keep the code clean.
Code abstraction for reuse can be carried too far, and I should know. ;-)
integer | $index | Sheet index |
integer | $type | Built-in name type |
integer | $rowmin | Start row |
integer | $rowmax | End row |
integer | $colmin | Start colum |
integer | $colmax | End column |
_writeSharedStringsTable() : string
Handling of the SST continue blocks is complicated by the need to include an additional continuation byte depending on whether the string is split between blocks or whether it starts at the beginning of the block. (There are also additional complications that will arise later when/if Rich Strings are supported).
The Excel documentation says that the SST record should be followed by an EXTSST record. The EXTSST record is a hash table that is used to optimise access to SST. However, despite the documentation it doesn't seem to be required so we will ignore it.
Binary data