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

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

Sets x and y scaled positions
См. также: TCPDF::SetXY()
public setXyScale ( float $x, float $y ) : void
$x float The x position
$y float The y position
Результат void
    public function setXyScale($x, $y)
    {
        $x = ($x - $this->_xMin) / $this->scale + $this->leftMargin;
        $y = ($y - $this->_yMin) / $this->scale + $this->topMargin;
        $this->SetXY($x, $y);
    }