Пример #1
0
 function createRow()
 {
     $r = new Row($this->COLNAMES);
     $r->setFontTypes($this->FONTTYPES);
     $r->setColsizes($this->COLSIZES);
     $r->setAlignments($this->ALIGNMENTS);
     $r->setPadding($this->getPadding());
     $r->setSpacing($this->getSpacing());
     if (isset($this->ALIGN)) {
         $r->setAlign($this->ALIGN);
     }
     return $r;
 }