Prado\Web\UI\WebControls\TTableRow::addParsedObject PHP Method

addParsedObject() public method

This method adds only {@link TTableCell} objects into the {@link getCells Cells} collection. All other objects are ignored.
public addParsedObject ( $object )
    public function addParsedObject($object)
    {
        if ($object instanceof TTableCell) {
            $this->getCells()->add($object);
        }
    }