PMA\libraries\plugins\schema\eps\Eps::showXY PHP Метод

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

Output the text at specified co-ordinates
public showXY ( string $text, integer $x, integer $y ) : void
$text string String to be displayed
$x integer X attribute defines the left position of the element
$y integer Y attribute defines the right position of the element
Результат void
    public function showXY($text, $x, $y)
    {
        $this->moveTo($x, $y);
        $this->show($text);
    }