| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\OpenSpout\Reader; |
| 4 |
|
| 5 |
/** |
| 6 |
* Interface SheetInterface. |
| 7 |
*/ |
| 8 |
interface SheetInterface |
| 9 |
{ |
| 10 |
/** |
| 11 |
* @return IteratorInterface iterator to iterate over the sheet's rows |
| 12 |
*/ |
| 13 |
public function getRowIterator(); |
| 14 |
/** |
| 15 |
* @return int Index of the sheet |
| 16 |
*/ |
| 17 |
public function getIndex(); |
| 18 |
/** |
| 19 |
* @return string Name of the sheet |
| 20 |
*/ |
| 21 |
public function getName(); |
| 22 |
/** |
| 23 |
* @return bool Whether the sheet was defined as active |
| 24 |
*/ |
| 25 |
public function isActive(); |
| 26 |
/** |
| 27 |
* @return bool Whether the sheet is visible |
| 28 |
*/ |
| 29 |
public function isVisible(); |
| 30 |
} |
| 31 |
|