?iť?

Your IP : 18.119.130.185


Current Path : /home/scgforma/www/soc064/htdocs/includes/phpoffice/PhpSpreadsheet/RichText/
Upload File :
Current File : /home/scgforma/www/soc064/htdocs/includes/phpoffice/PhpSpreadsheet/RichText/ITextElement.php

<?php

namespace PhpOffice\PhpSpreadsheet\RichText;

interface ITextElement
{
    /**
     * Get text.
     *
     * @return string Text
     */
    public function getText();

    /**
     * Set text.
     *
     * @param $text string Text
     *
     * @return ITextElement
     */
    public function setText($text);

    /**
     * Get font.
     *
     * @return null|\PhpOffice\PhpSpreadsheet\Style\Font
     */
    public function getFont();

    /**
     * Get hash code.
     *
     * @return string Hash code
     */
    public function getHashCode();
}