PhpSigep\Pdf\CartaoDePostagem2016::t PHP Method

t() private method

private t ( $w, $txt, $ln, $align, $h = null, $multiLines = false, $utf8 = true )
    private function t($w, $txt, $ln, $align, $h = null, $multiLines = false, $utf8 = true)
    {
        if ($utf8) {
            $txt = $this->_($txt);
        }
        //		$border = 1;
        //		$fill   = true;
        $border = 0;
        $fill = false;
        if ($h === null) {
            $h = $this->pdf->getLineHeigth();
        }
        if ($multiLines) {
            $this->pdf->MultiCell($w, $h, $txt, $border, $align, $fill);
        } else {
            $this->pdf->Cell($w, $h, $txt, $border, $ln, $align, $fill);
        }
    }