AddressRange.php 365 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace PhpOffice\PhpSpreadsheet\Cell;
  3. interface AddressRange
  4. {
  5. public const MAX_ROW = 1048576;
  6. public const MAX_COLUMN = 'XFD';
  7. public const MAX_COLUMN_INT = 16384;
  8. /**
  9. * @return mixed
  10. */
  11. public function from();
  12. /**
  13. * @return mixed
  14. */
  15. public function to();
  16. public function __toString(): string;
  17. }