ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
IWriter.php
Go to the documentation of this file.
1<?php
2
4
6
7interface IWriter
8{
12 public function __construct(Spreadsheet $spreadsheet);
13
21 public function getIncludeCharts();
22
32 public function setIncludeCharts($pValue);
33
44 public function getPreCalculateFormulas();
45
55 public function setPreCalculateFormulas($pValue);
56
62 public function save($pFilename);
63
69 public function getUseDiskCaching();
70
79 public function setUseDiskCaching($pValue, $pDirectory = null);
80
86 public function getDiskCachingDirectory();
87}
An exception for terminatinating execution or to throw for unit testing.
getIncludeCharts()
Write charts in workbook? If this is true, then the Writer will write definitions for any charts that...
setIncludeCharts($pValue)
Set write charts in workbook Set to true, to advise the Writer to include any charts that exist in th...
__construct(Spreadsheet $spreadsheet)
IWriter constructor.
save($pFilename)
Save PhpSpreadsheet to file.
setUseDiskCaching($pValue, $pDirectory=null)
Set use disk caching where possible?
getUseDiskCaching()
Get use disk caching where possible?
setPreCalculateFormulas($pValue)
Set Pre-Calculate Formulas Set to true (the default) to advise the Writer to calculate all formulae o...
getPreCalculateFormulas()
Get Pre-Calculate Formulas flag If this is true (the default), then the writer will recalculate all f...
getDiskCachingDirectory()
Get disk caching directory.