|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 1441 |
ariadna |
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 |
public function readCell(string $columnAddress, int $row, string $worksheetName = ''): bool;
|
|
|
15 |
}
|