" element * @param int $sheetIndex Index of the sheet, based on order in the workbook (zero-based) * @param string $sheetName Name of the sheet */ public function __construct($xmlReader, $sheetIndex, $sheetName) { $this->rowIterator = new RowIterator($xmlReader); $this->index = $sheetIndex; $this->name = $sheetName; } /** * @api * @return \Box\Spout\Reader\ODS\RowIterator */ public function getRowIterator() { return $this->rowIterator; } /** * @api * @return int Index of the sheet, based on order in the workbook (zero-based) */ public function getIndex() { return $this->index; } /** * @api * @return string Name of the sheet */ public function getName() { return $this->name; } }