PMA\libraries\plugins\schema\pdf\Pdf::setLineWidthScale PHP Метод

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

Sets the scaled line width
См. также: TCPDF::SetLineWidth()
public setLineWidthScale ( float $width ) : void
$width float The line width
Результат void
    public function setLineWidthScale($width)
    {
        $width = $width / $this->scale;
        $this->SetLineWidth($width);
    }