123456789101112131415161718192021222324252627282930313233343536 |
- <?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 \PhpOffice\PhpSpreadsheet\Style\Font
- */
- public function getFont();
- /**
- * Get hash code.
- *
- * @return string Hash code
- */
- public function getHashCode();
- }
|