Lines Matching refs:colspan
10 public $colspan; variable in CellSize
22 public function __construct($colspan = 1, $rowspan = 0) { argument
23 $this->colspan = $colspan;
27 public function setSize($colspan, $rowspan) { argument
28 $this->colspan = $colspan;
33 return $this->colspan;
43 return new CellSize($this->colspan, $this->rowspan - 1);
50 return "<c=$this->colspan,r=$this->rowspan>";
144 * @param int $colspan
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);
160 * @param int $colspan
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);
186 $this->column += $colspan;