Files
fvsjs/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/RichText/ITextElement.php
2023-12-27 10:40:24 +01:00

39 lines
574 B
PHP

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