2026-01-22 15:17:18 +00:00

35 lines
493 B
PHP

<?php
namespace TablePress\PhpOffice\PhpSpreadsheet\RichText;
use TablePress\PhpOffice\PhpSpreadsheet\Style\Font;
interface ITextElement
{
/**
* Get text.
*/
public function getText(): string;
/**
* Set text.
*
* @param string $text Text
*
* @return $this
*/
public function setText(string $text): self;
/**
* Get font.
*/
public function getFont(): ?Font;
/**
* Get hash code.
*
* @return string Hash code
*/
public function getHashCode(): string;
}