__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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;
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| SharedStringsCaching | Folder | 0777 |
|
|
| SharedStringsManager.php | File | 8.92 KB | 0777 |
|
| SheetManager.php | File | 10.57 KB | 0777 |
|
| StyleManager.php | File | 11.94 KB | 0777 |
|
| StyleManagerInterface.php | File | 898 B | 0777 |
|
| WorkbookRelationshipsManager.php | File | 5.48 KB | 0777 |
|