Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
namespace PhpOffice\PhpSpreadsheet\Reader;
4
 
5
interface IReadFilter
6
{
7
    /**
8
     * Should this cell be read?
9
     *
10
     * @param string $columnAddress Column address (as a string value like "A", or "IV")
11
     * @param int $row Row number
12
     * @param string $worksheetName Optional worksheet name
13
     *
14
     * @return bool
15
     */
16
    public function readCell($columnAddress, $row, $worksheetName = '');
17
}