ITextElement.php 715 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. interface PHPExcel_RichText_ITextElement
  8. {
  9. /**
  10. * Get text
  11. *
  12. * @return string Text
  13. */
  14. public function getText();
  15. /**
  16. * Set text
  17. *
  18. * @param $pText string Text
  19. * @return PHPExcel_RichText_ITextElement
  20. */
  21. public function setText($pText = '');
  22. /**
  23. * Get font
  24. *
  25. * @return PHPExcel_Style_Font
  26. */
  27. public function getFont();
  28. /**
  29. * Get hash code
  30. *
  31. * @return string Hash code
  32. */
  33. public function getHashCode();
  34. }