ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
IWriter.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 interface 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 }
save($pFilename)
Save PhpSpreadsheet to file.
setPreCalculateFormulas($pValue)
Set Pre-Calculate Formulas Set to true (the default) to advise the Writer to calculate all formulae o...
setUseDiskCaching($pValue, $pDirectory=null)
Set use disk caching where possible?
getDiskCachingDirectory()
Get disk caching directory.
getIncludeCharts()
Write charts in workbook? If this is true, then the Writer will write definitions for any charts that...
__construct(Spreadsheet $spreadsheet)
IWriter constructor.
getPreCalculateFormulas()
Get Pre-Calculate Formulas flag If this is true (the default), then the writer will recalculate all f...
getUseDiskCaching()
Get use disk caching where possible?
setIncludeCharts($pValue)
Set write charts in workbook Set to true, to advise the Writer to include any charts that exist in th...