X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/lib/openspout/src/Reader/XLSX/Manager
home
/
cbholdings
/
pasukulu
/
lib
/
openspout
/
src
/
Reader
/
XLSX
/
Manager
/
📁
..
📁
SharedStringsCaching
📄
SharedStringsManager.php
(8.89 KB)
📄
SheetManager.php
(10.71 KB)
📄
StyleManager.php
(11.75 KB)
📄
StyleManagerInterface.php
(898 B)
📄
WorkbookRelationshipsManager.php
(5.5 KB)
Editing: StyleManagerInterface.php
<?php declare(strict_types=1); namespace OpenSpout\Reader\XLSX\Manager; /** * @internal */ interface StyleManagerInterface { /** * Returns whether the style with the given ID should consider * numeric values as timestamps and format the cell as a date. * * @param int $styleId Zero-based style ID * * @return bool Whether the cell with the given cell should display a date instead of a numeric value */ public function shouldFormatNumericValueAsDate(int $styleId): bool; /** * Returns the format as defined in "styles.xml" of the given style. * NOTE: It is assumed that the style DOES have a number format associated to it. * * @param int $styleId Zero-based style ID * * @return string The number format code associated with the given style */ public function getNumberFormatCode(int $styleId): string; }
Upload File
Create Folder