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\Cell;
4
 
5
/**
6
 * @template T
7
 */
8
interface AddressRange
9
{
10
    public const MAX_ROW = 1048576;
11
 
12
    public const MAX_COLUMN = 'XFD';
13
 
14
    public const MAX_COLUMN_INT = 16384;
15
 
16
    /**
17
     * @return T
18
     */
19
    public function from(): mixed;
20
 
21
    /**
22
     * @return T
23
     */
24
    public function to(): mixed;
25
 
26
    public function __toString(): string;
27
}