Gui\Components\Canvas::setSize PHP Метод

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

Sets the canvas size
public setSize ( integer $width, integer $height ) : self
$width integer
$height integer
Результат self
    public function setSize($width, $height)
    {
        $this->call('picture.bitmap.setSize', [$width, $height]);
        return $this;
    }