Lines Matching refs:style
146 foreach ($this->styles as $class => $style) {
148 if ($style['font'] === 'dejavusans') {
149 $style['font'] = $this->default_font;
151 echo 'font-family: ', $style['font'], '; ';
152 echo 'font-size: ', $style['size'], 'pt; ';
154 if (stripos($style['style'], 'B') !== false) {
157 if (stripos($style['style'], 'I') !== false) {
160 if (stripos($style['style'], 'U') !== false) {
163 if (stripos($style['style'], 'D') !== false) {
227 * @param string $style The name of the text style
239 …h, float $height, string $border, string $align, string $bgcolor, string $style, int $ln, float $t… argument
241 …return new ReportHtmlCell($width, $height, $border, $align, $bgcolor, $style, $ln, $top, $left, $f…
255 * @param string $style
271 string $style, argument
276 …x($width, $height, $border, $bgcolor, $newline, $left, $top, $pagecheck, $style, $fill, $padding, …
282 * @param string $style
287 public function createText(string $style, string $color): ReportBaseText argument
289 return new ReportHtmlText($style, $color);
295 * @param string $style Style name
299 public function createFootnote(string $style): ReportBaseFootnote argument
301 return new ReportHtmlFootnote($style);
474 $style = $this->getStyle($this->currentStyle);
476 return $style['size'];
525 $style = $this->getStyle($this->currentStyle);
527 return mb_strlen($text) * $style['size'] / 2;
703 $style = $this->getStyle($this->getCurrentStyle());
706 $htmlcode .= ' class="' . $style['name'] . '"';