Box\Spout\Reader\XLSX\Sheet::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $filePath, string $sheetDataXMLFilePath, integer $sheetIndex, string $sheetName, ReaderOptions $options, $sharedStringsHelper )
$filePath string Path of the XLSX file being read
$sheetDataXMLFilePath string Path of the sheet data XML file as in [Content_Types].xml
$sheetIndex integer Index of the sheet, based on order in the workbook (zero-based)
$sheetName string Name of the sheet
$options ReaderOptions Reader's current options
    public function __construct($filePath, $sheetDataXMLFilePath, $sheetIndex, $sheetName, $options, $sharedStringsHelper)
    {
        $this->rowIterator = new RowIterator($filePath, $sheetDataXMLFilePath, $options, $sharedStringsHelper);
        $this->index = $sheetIndex;
        $this->name = $sheetName;
    }