CakePdf\Pdf\CakePdf::windowStatus PHP Метод

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

Get/Set the required window status for rendering Waits until the status is equal to the string before rendering the pdf
public windowStatus ( null | string $status = null ) : mixed
$status null | string status to set as string
Результат mixed
    public function windowStatus($status = null)
    {
        if ($status === null) {
            return $this->_windowStatus;
        }
        $this->_windowStatus = $status;
        return $this;
    }