PhpOffice\PhpPresentation\Shape\AbstractGraphic::setWidth PHP Метод

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

Set Width
public setWidth ( integer $pValue ) : PhpOffice\PhpPresentation\Shape\AbstractDrawing
$pValue integer
Результат PhpOffice\PhpPresentation\Shape\AbstractDrawing
    public function setWidth($pValue = 0)
    {
        // Resize proportional?
        if ($this->resizeProportional && $pValue != 0) {
            $ratio = $this->height / $this->width;
            $this->height = (int) round($ratio * $pValue);
        }
        // Set width
        $this->width = $pValue;
        return $this;
    }