| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- interface PHPExcel_RichText_ITextElement
- {
- /**
- * Get text
- *
- * @return string Text
- */
- public function getText();
- /**
- * Set text
- *
- * @param $pText string Text
- * @return PHPExcel_RichText_ITextElement
- */
- public function setText($pText = '');
- /**
- * Get font
- *
- * @return PHPExcel_Style_Font
- */
- public function getFont();
- /**
- * Get hash code
- *
- * @return string Hash code
- */
- public function getHashCode();
- }
|