__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ 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\Writer\Common;
use OpenSpout\Common\Entity\Style\Style;
use OpenSpout\Common\TempFolderOptionTrait;
abstract class AbstractOptions
{
use TempFolderOptionTrait;
public Style $DEFAULT_ROW_STYLE;
public bool $SHOULD_CREATE_NEW_SHEETS_AUTOMATICALLY = true;
public ?float $DEFAULT_COLUMN_WIDTH = null;
public ?float $DEFAULT_ROW_HEIGHT = null;
/** @var ColumnWidth[] Array of min-max-width arrays */
private array $COLUMN_WIDTHS = [];
public function __construct()
{
$this->DEFAULT_ROW_STYLE = new Style();
}
/**
* @param positive-int ...$columns One or more columns with this width
*/
final public function setColumnWidth(float $width, int ...$columns): void
{
// Gather sequences
$sequence = [];
foreach ($columns as $column) {
$sequenceLength = \count($sequence);
if ($sequenceLength > 0) {
$previousValue = $sequence[$sequenceLength - 1];
if ($column !== $previousValue + 1) {
$this->setColumnWidthForRange($width, $sequence[0], $previousValue);
$sequence = [];
}
}
$sequence[] = $column;
}
$this->setColumnWidthForRange($width, $sequence[0], $sequence[\count($sequence) - 1]);
}
/**
* @param float $width The width to set
* @param positive-int $start First column index of the range
* @param positive-int $end Last column index of the range
*/
final public function setColumnWidthForRange(float $width, int $start, int $end): void
{
$this->COLUMN_WIDTHS[] = new ColumnWidth($start, $end, $width);
}
/**
* @internal
*
* @return ColumnWidth[]
*/
final public function getColumnWidths(): array
{
return $this->COLUMN_WIDTHS;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Creator | Folder | 0777 |
|
|
| Entity | Folder | 0777 |
|
|
| Helper | Folder | 0777 |
|
|
| Manager | Folder | 0777 |
|
|
| AbstractOptions.php | File | 1.89 KB | 0777 |
|
| ColumnWidth.php | File | 350 B | 0777 |
|