Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
<?php
2
 
3
namespace PhpOffice\PhpSpreadsheet\RichText;
4
 
5
use PhpOffice\PhpSpreadsheet\Style\Font;
6
 
7
interface ITextElement
8
{
9
    /**
10
     * Get text.
11
     */
12
    public function getText(): string;
13
 
14
    /**
15
     * Set text.
16
     *
17
     * @param string $text Text
18
     *
19
     * @return $this
20
     */
21
    public function setText(string $text): self;
22
 
23
    /**
24
     * Get font.
25
     */
26
    public function getFont(): ?Font;
27
 
28
    /**
29
     * Get hash code.
30
     *
31
     * @return string Hash code
32
     */
33
    public function getHashCode(): string;
34
}