Lines Matching refs:base_table_properties

41 			$this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['baseProperties'] = $this->mpdf->base_table_properties;
50 //$this->mpdf->base_table_properties['FONT-KERNING'] = ($this->mpdf->textvar & TextVars::FC_KERNING); // mPDF 6
51 $this->mpdf->base_table_properties['LETTER-SPACING'] = $this->mpdf->lSpacingCSS;
52 $this->mpdf->base_table_properties['WORD-SPACING'] = $this->mpdf->wSpacingCSS;
148 $this->mpdf->base_table_properties = [];
284 $this->mpdf->base_table_properties['FONT-FAMILY'] = $this->mpdf->FontFamily;
288 $tableFontSize = $this->sizeConverter->convert($this->mpdf->base_table_properties['FONT-SIZE']);
298 $this->mpdf->base_table_properties['FONT-SIZE'] = $this->mpdf->FontSize . 'mm';
302 $this->mpdf->base_table_properties['FONT-WEIGHT'] = 'BOLD';
307 $this->mpdf->base_table_properties['FONT-STYLE'] = 'ITALIC';
311 $this->mpdf->base_table_properties['COLOR'] = $properties['COLOR'];
314 $this->mpdf->base_table_properties['FONT-KERNING'] = $properties['FONT-KERNING'];
317 $this->mpdf->base_table_properties['LETTER-SPACING'] = $properties['LETTER-SPACING'];
320 $this->mpdf->base_table_properties['WORD-SPACING'] = $properties['WORD-SPACING'];
324 $this->mpdf->base_table_properties['HYPHENS'] = $properties['HYPHENS'];
692 $this->mpdf->base_table_properties = $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['baseProperties'];
694 $this->mpdf->default_font = $this->mpdf->base_table_properties['FONT-FAMILY'];
696 $this->mpdf->default_font_size = $this->sizeConverter->convert($this->mpdf->base_table_properties['FONT-SIZE']) * Mpdf::SCALE;