Box\Spout\Writer\ODS\Internal\Worksheet::startSheet PHP Method

startSheet() protected method

Prepares the worksheet to accept data The XML file does not contain the "" node as it contains the sheet's name which may change during the execution of the program. It will be added at the end.
protected startSheet ( ) : void
return void
    protected function startSheet()
    {
        $this->sheetFilePointer = fopen($this->worksheetFilePath, 'w');
        $this->throwIfSheetFilePointerIsNotAvailable();
    }