Gui\Components\Window::setTitle PHP Method

setTitle() public method

Sets the window title
public setTitle ( string $title ) : self
$title string
return self
    public function setTitle($title)
    {
        $this->set('caption', $title);
        return $this;
    }