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 string $column Column address (as a string value like "A", or "IV")
  9. * @param int $row Row number
  10. * @param string $worksheetName Optional worksheet name
  11. *
  12. * @return bool
  13. */
  14. public function readCell($column, $row, $worksheetName = '');
  15. }