tag, true); $this->addItem($item); } public function setRowSpan($value) { $this->setAttribute('rowspan', $value); return $this; } public function getColSpan() { return $this->getAttribute('colspan') ?? 1; } public function setColSpan($value) { $this->setAttribute('colspan', $value); return $this; } public function setWidth($value) { $this->setAttribute('width', $value); return $this; } }