Lines Matching refs:properties

18 		$properties = $this->cssManager->MergeCSS('TABLE', 'TR', $attr);
22 if (!empty($properties['BORDER-LEFT'])) {
23 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-left'][$this->mpdf->row] = $properties['BORDER-LEFT'];
25 if (!empty($properties['BORDER-RIGHT'])) {
26 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-right'][$this->mpdf->row] = $properties['BORDER-RIGHT'];
28 if (!empty($properties['BORDER-TOP'])) {
29 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-top'][$this->mpdf->row] = $properties['BORDER-TOP'];
31 if (!empty($properties['BORDER-BOTTOM'])) {
32 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trborder-bottom'][$this->mpdf->row] = $properties['BORDER-BOTTOM'];
36 if (isset($properties['BACKGROUND-COLOR'])) {
38 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['bgcolor'][$this->mpdf->row] = $properties['BACKGROUND-COLOR'];
45 if (isset($properties['BACKGROUND-GRADIENT']) && !$this->mpdf->kwt && !$this->mpdf->ColActive) {
46 $this->mpdf->table[$this->mpdf->tableLevel][$this->mpdf->tbctr[$this->mpdf->tableLevel]]['trgradients'][$this->mpdf->row] = $properties['BACKGROUND-GRADIENT'];
50 if (!empty($properties['BACKGROUND-IMAGE']) && !$this->mpdf->kwt && !$this->mpdf->ColActive) {
51 $ret = $this->mpdf->SetBackground($properties, $currblk['inner_width']);
58 if (isset($properties['TEXT-ROTATE'])) {
59 $this->mpdf->trow_text_rotate = $properties['TEXT-ROTATE'];