mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-18 07:58:41 +00:00
26 lines
654 B
PHP
26 lines
654 B
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheet\Style\ConditionalFormatting\Wizard;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Style\Conditional;
|
|
use PhpOffice\PhpSpreadsheet\Style\Style;
|
|
|
|
interface WizardInterface
|
|
{
|
|
public function getCellRange(): string;
|
|
|
|
public function setCellRange(string $cellRange): void;
|
|
|
|
public function getStyle(): Style;
|
|
|
|
public function setStyle(Style $style): void;
|
|
|
|
public function getStopIfTrue(): bool;
|
|
|
|
public function setStopIfTrue(bool $stopIfTrue): void;
|
|
|
|
public function getConditional(): Conditional;
|
|
|
|
public static function fromConditional(Conditional $conditional, string $cellRange = 'A1'): self;
|
|
}
|