Lines Matching refs:width
222 * @param float $width cell width (expressed in points)
239 …public function createCell(float $width, float $height, string $border, string $align, string $bgc… argument
241 …return new ReportHtmlCell($width, $height, $border, $align, $bgcolor, $style, $ln, $top, $left, $f…
247 * @param float $width Text box width
263 float $width, argument
276 …return new ReportHtmlTextbox($width, $height, $border, $bgcolor, $newline, $left, $top, $pagecheck…
637 * @param float $width Width in points the text has to fit into
641 public function textWrap(string $str, float $width): string argument
643 $line_width = (int) ($width / ($this->getCurrentStyleHeight() / 2));
656 * @param int $width
660 private function utf8WordWrap(string $string, int $width): string argument
664 if (mb_strlen($string) <= $width) {
669 $sub1 = mb_substr($string, 0, $width + 1);
674 $sub = mb_substr($string, 0, $width);