Lines Matching refs:rowspan
12 public $rowspan; variable in CellSize
22 public function __construct($colspan = 1, $rowspan = 0) { argument
24 $this->rowspan = $rowspan;
27 public function setSize($colspan, $rowspan) { argument
29 $this->rowspan = $rowspan;
37 return $this->rowspan;
42 if ($this->rowspan > 0) {
43 return new CellSize($this->colspan, $this->rowspan - 1);
50 return "<c=$this->colspan,r=$this->rowspan>";
146 * @param int $rowspan
148 function tableheader_open($colspan = 1, $align = null, $rowspan = 1) { argument
149 $numberOfPlaceholders = $this->computePlaceholders($colspan, $rowspan);
154 $this->decorator->tableheader_open($colspan, $align, $rowspan);
162 * @param int $rowspan
164 function tablecell_open($colspan = 1, $align = center, $rowspan = 1) { argument
165 $numberOfPlaceholders = $this->computePlaceholders($colspan, $rowspan);
170 $this->decorator->tablecell_open($colspan, $align, $rowspan);
173 function computePlaceholders($colspan, $rowspan) { argument
185 $this->row[$this->column]->setSize($colspan, $rowspan);