IReadFilter.php 402 B

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