芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/store.kwesioben.com/vendor/box/spout/src/Spout/Reader/XLSX/Sheet.php
rowIterator = $rowIterator; $this->index = $sheetIndex; $this->name = $sheetName; $this->isActive = $isSheetActive; $this->isVisible = $isSheetVisible; } /** * @return \Box\Spout\Reader\XLSX\RowIterator */ public function getRowIterator() { return $this->rowIterator; } /** * @return int Index of the sheet, based on order in the workbook (zero-based) */ public function getIndex() { return $this->index; } /** * @return string Name of the sheet */ public function getName() { return $this->name; } /** * @return bool Whether the sheet was defined as active */ public function isActive() { return $this->isActive; } /** * @return bool Whether the sheet is visible */ public function isVisible() { return $this->isVisible; } }